diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-23 19:55:11 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-23 22:07:43 -0800 |
commit | 2d795fb8c0546ed2b65ee75ffdfd769c48b1164c (patch) | |
tree | 92bb1f376ff4d29adfa228e293a98af8b4586ba7 | |
parent | e471b330ac6107c63f80baaba4fee7782e2dc396 (diff) | |
download | yosys-2d795fb8c0546ed2b65ee75ffdfd769c48b1164c.tar.gz yosys-2d795fb8c0546ed2b65ee75ffdfd769c48b1164c.tar.bz2 yosys-2d795fb8c0546ed2b65ee75ffdfd769c48b1164c.zip |
simple_abc9 tests to discard whitebox before write for sim
-rw-r--r-- | tests/simple_abc9/abc9.v | 2 | ||||
-rwxr-xr-x | tests/simple_abc9/run-test.sh | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/simple_abc9/abc9.v b/tests/simple_abc9/abc9.v index ee01ab5dc..4dc5ad689 100644 --- a/tests/simple_abc9/abc9.v +++ b/tests/simple_abc9/abc9.v @@ -213,7 +213,7 @@ module arbiter (clk, rst, request, acknowledge, grant, grant_valid, grant_encode input rst; endmodule -(* abc9_box_id=1 *) +(* abc9_box_id=1, whitebox *) module MUXF8(input I0, I1, S, output O); endmodule diff --git a/tests/simple_abc9/run-test.sh b/tests/simple_abc9/run-test.sh index bc921daa9..32d7a80ca 100755 --- a/tests/simple_abc9/run-test.sh +++ b/tests/simple_abc9/run-test.sh @@ -28,4 +28,5 @@ exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.v *.sv EXTRA_FLAGS="-n 300 -p abc9 -lut 4 -box ../abc.box; \ clean; \ check -assert; \ - select -assert-none t:${DOLLAR}_NOT_ t:${DOLLAR}_AND_ %%'" + select -assert-none t:${DOLLAR}_NOT_ t:${DOLLAR}_AND_ %%; \ + setattr -mod -unset whitebox'" |