diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2019-02-20 15:34:59 -0800 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2019-02-20 15:34:59 -0800 |
commit | 43d5471570bd208ec87e2994f53a835c1e8ef3b9 (patch) | |
tree | 0483c61044253d544f57fa8b431f6ed5066d8b2d /tests/techmap | |
parent | 945bbcc2989c6b6cad2ef3b9aae253f23d6a2697 (diff) | |
download | yosys-43d5471570bd208ec87e2994f53a835c1e8ef3b9.tar.gz yosys-43d5471570bd208ec87e2994f53a835c1e8ef3b9.tar.bz2 yosys-43d5471570bd208ec87e2994f53a835c1e8ef3b9.zip |
Move tests/techmap/abc9 to simple_abc9
Diffstat (limited to 'tests/techmap')
-rw-r--r-- | tests/techmap/abc9/abc9.v | 6 | ||||
-rw-r--r-- | tests/techmap/abc9/abc9_runtest.sh | 5 | ||||
-rwxr-xr-x | tests/techmap/abc9/run-test.sh | 10 | ||||
-rwxr-xr-x | tests/techmap/run-test.sh | 8 |
4 files changed, 0 insertions, 29 deletions
diff --git a/tests/techmap/abc9/abc9.v b/tests/techmap/abc9/abc9.v deleted file mode 100644 index 2d9aea366..000000000 --- a/tests/techmap/abc9/abc9.v +++ /dev/null @@ -1,6 +0,0 @@ -module top(input [1:0] a, output [1:0] b, output c, output d, output e); -assign b = a; -assign c = ^a; -assign d = ~c; -assign e = d; -endmodule diff --git a/tests/techmap/abc9/abc9_runtest.sh b/tests/techmap/abc9/abc9_runtest.sh deleted file mode 100644 index 2deaad719..000000000 --- a/tests/techmap/abc9/abc9_runtest.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -set -ev - -../../../yosys -p 'abc9 -lut 4; check; select -assert-count 2 t:$lut; select -assert-none c:* t:$lut %n %i' abc9.v diff --git a/tests/techmap/abc9/run-test.sh b/tests/techmap/abc9/run-test.sh deleted file mode 100755 index e2fc11e52..000000000 --- a/tests/techmap/abc9/run-test.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -set -e -for x in *_runtest.sh; do - echo "Running $x.." - if ! bash $x &> ${x%.sh}.log; then - tail ${x%.sh}.log - echo ERROR - exit 1 - fi -done diff --git a/tests/techmap/run-test.sh b/tests/techmap/run-test.sh index 129451e08..e2fc11e52 100755 --- a/tests/techmap/run-test.sh +++ b/tests/techmap/run-test.sh @@ -8,11 +8,3 @@ for x in *_runtest.sh; do exit 1 fi done - -for d in */; do - if [ -x $d/run-test.sh ]; then - cd $d - bash run-test.sh - cd .. - fi -done |