aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-23 11:09:50 -0700
committerEddie Hung <eddie@fpgeh.com>2019-08-23 11:09:50 -0700
commitd62c10d641c5af4b1d395caa042681788df1aae4 (patch)
tree235d7fc03d66077b2e4ea62b2d2859731c7e7515 /tests/techmap
parent4c0404ae024e9595934e738a3e8f52be9c22d090 (diff)
downloadyosys-d62c10d641c5af4b1d395caa042681788df1aae4.tar.gz
yosys-d62c10d641c5af4b1d395caa042681788df1aae4.tar.bz2
yosys-d62c10d641c5af4b1d395caa042681788df1aae4.zip
tests/techmap/run-test.sh to cope with *.ys
Diffstat (limited to 'tests/techmap')
-rw-r--r--tests/techmap/.gitignore1
-rwxr-xr-xtests/techmap/run-test.sh24
2 files changed, 18 insertions, 7 deletions
diff --git a/tests/techmap/.gitignore b/tests/techmap/.gitignore
index 397b4a762..cfed22fc5 100644
--- a/tests/techmap/.gitignore
+++ b/tests/techmap/.gitignore
@@ -1 +1,2 @@
*.log
+/*.mk
diff --git a/tests/techmap/run-test.sh b/tests/techmap/run-test.sh
index e2fc11e52..96489ff15 100755
--- a/tests/techmap/run-test.sh
+++ b/tests/techmap/run-test.sh
@@ -1,10 +1,20 @@
-#!/bin/bash
+#!/usr/bin/env 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
+{
+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 > ${s%.sh}.log 2>&1"
fi
done
+} > run-test.mk
+exec ${MAKE:-make} -f run-test.mk