diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2019-10-18 14:29:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-18 14:29:44 +0200 |
commit | e8ef3fcdfcacbc711a4722deee95f0707634bed0 (patch) | |
tree | 971fae1a1b7d3204827759454fa55accdc9bc01f /tests/xilinx/run-test.sh | |
parent | 3c41599ee1f62e4d77ba630fa1a245ef3fe236fa (diff) | |
parent | 190b40341abd73ab5edf0e6740b6526e9575253b (diff) | |
download | yosys-e8ef3fcdfcacbc711a4722deee95f0707634bed0.tar.gz yosys-e8ef3fcdfcacbc711a4722deee95f0707634bed0.tar.bz2 yosys-e8ef3fcdfcacbc711a4722deee95f0707634bed0.zip |
Merge pull request #1454 from YosysHQ/mmicko/common_tests
Share common tests
Diffstat (limited to 'tests/xilinx/run-test.sh')
-rwxr-xr-x | tests/xilinx/run-test.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/xilinx/run-test.sh b/tests/xilinx/run-test.sh deleted file mode 100755 index 46716f9a0..000000000 --- a/tests/xilinx/run-test.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash -set -e -{ -echo "all::" -for x in *.ys; do - echo "all:: run-$x" - echo "run-$x:" - echo " @echo 'Running $x..'" - echo " @../../yosys -ql ${x%.ys}.log -w 'Yosys has only limited support for tri-state logic at the moment.' $x" -done -for s in *.sh; do - if [ "$s" != "run-test.sh" ]; then - echo "all:: run-$s" - echo "run-$s:" - echo " @echo 'Running $s..'" - echo " @bash $s" - fi -done -} > run-test.mk -exec ${MAKE:-make} -f run-test.mk |