Remove simulation from run-test.sh (unnecessary paths)
authorSergeyDegtyar <sndegtyar@gmail.com>
Fri, 30 Aug 2019 06:11:03 +0000 (09:11 +0300)
committerSergeyDegtyar <sndegtyar@gmail.com>
Fri, 30 Aug 2019 06:11:03 +0000 (09:11 +0300)
tests/ice40/run-test.sh

index acfd582d2e0cb7fdf9be7882d6ecdd5a9f33044c..2c72ca3a9652dda0f9bd83ea887b4941164fb03f 100755 (executable)
@@ -1,11 +1,5 @@
+#!/usr/bin/env bash
 set -e
-if [ -f "../../techlibs/common/simcells.v" ]; then
-       COMMON_PREFIX=../../techlibs/common
-       TECHLIBS_PREFIX=../../techlibs
-else
-       COMMON_PREFIX=/usr/local/share/yosys
-       TECHLIBS_PREFIX=/usr/local/share/yosys
-fi
 {
 echo "all::"
 for x in *.ys; do
@@ -14,14 +8,13 @@ for x in *.ys; do
        echo "  @echo 'Running $x..'"
        echo "  @../../yosys -ql ${x%.ys}.log $x -w 'Yosys has only limited support for tri-state logic at the moment.'"
 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
+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