Skip to content

Commit

Permalink
test: Ignore error in common_cells (broken previously), remove old IG…
Browse files Browse the repository at this point in the history
…NOREs

The common_cells test was already failing as of 37f9596

The removed ignores referenced issues that have been closed and the tests
pass now.
  • Loading branch information
stefanlippuner committed Sep 30, 2023
1 parent 4db1509 commit 71b133e
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 71b133e

Please sign in to comment.