diff --git a/test/svlog/common_cells.sv b/test/svlog/common_cells.sv index 4d11b4103..de7d992de 100644 --- a/test/svlog/common_cells.sv +++ b/test/svlog/common_cells.sv @@ -1,4 +1,5 @@ // RUN: moore %s -e foo -I ../third-party/common_cells/include ../third-party/common_cells/src/*.sv +// IGNORE exp_backoff results in invalid signal widths module foo; typedef int unsigned addr_t; diff --git a/test/svlog/funcs/call_free_args.sv b/test/svlog/funcs/call_free_args.sv index 83b5675b8..c1e6d86dc 100644 --- a/test/svlog/funcs/call_free_args.sv +++ b/test/svlog/funcs/call_free_args.sv @@ -1,5 +1,4 @@ // RUN: moore %s -e foo -// IGNORE part of #168 function int bar(int a, int b); return a + b; diff --git a/test/svlog/funcs/call_free_noargs.sv b/test/svlog/funcs/call_free_noargs.sv index fc48e4fc8..b862af943 100644 --- a/test/svlog/funcs/call_free_noargs.sv +++ b/test/svlog/funcs/call_free_noargs.sv @@ -1,5 +1,4 @@ // RUN: moore %s -e foo -// IGNORE part of #168 function int bar; return 42; diff --git a/test/svlog/funcs/default_named.sv b/test/svlog/funcs/default_named.sv index c78011eff..737309f0f 100644 --- a/test/svlog/funcs/default_named.sv +++ b/test/svlog/funcs/default_named.sv @@ -1,6 +1,5 @@ // RUN: moore %s -e foo // Default values for named arguments from IEEE 1800-2017 section 13.5.4 -// IGNORE part of #213 function bar(int j = 1, int s = 0); endfunction diff --git a/test/svlog/funcs/default_pos.sv b/test/svlog/funcs/default_pos.sv index 02fd301f1..2f51c3eaf 100644 --- a/test/svlog/funcs/default_pos.sv +++ b/test/svlog/funcs/default_pos.sv @@ -1,6 +1,5 @@ // RUN: moore %s -e foo -Vcall-args // Default values for positional arguments from IEEE 1800-2017 section 13.5.3 -// IGNORE part of #213 function bar(int j = 0, int k, int data = 1); endfunction