Skip to content

Commit

Permalink
test: Ignore error in common_cells (broken on master), remove old IGN…
Browse files Browse the repository at this point in the history
…OREs

The removed ignores referenced issues that have been closed and the tests
pass now.
  • Loading branch information
stefanlippuner committed Sep 10, 2023
1 parent facf2b0 commit ba0c8be
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions test/svlog/common_cells.sv
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
1 change: 0 additions & 1 deletion test/svlog/funcs/call_free_args.sv
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// RUN: moore %s -e foo
// IGNORE part of #168

function int bar(int a, int b);
return a + b;
Expand Down
1 change: 0 additions & 1 deletion test/svlog/funcs/call_free_noargs.sv
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// RUN: moore %s -e foo
// IGNORE part of #168

function int bar;
return 42;
Expand Down
1 change: 0 additions & 1 deletion test/svlog/funcs/default_named.sv
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 0 additions & 1 deletion test/svlog/funcs/default_pos.sv
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit ba0c8be

Please sign in to comment.