diff options
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 ea56b70f0..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 $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 |