aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/psl01/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/psl01/testsuite.sh')
-rwxr-xr-xtestsuite/synth/psl01/testsuite.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/testsuite/synth/psl01/testsuite.sh b/testsuite/synth/psl01/testsuite.sh
index e6d4050e6..4c43382b6 100755
--- a/testsuite/synth/psl01/testsuite.sh
+++ b/testsuite/synth/psl01/testsuite.sh
@@ -3,8 +3,11 @@
. ../../testenv.sh
GHDL_STD_FLAGS=--std=08
-synth -fpsl hello.vhdl -e hello > syn_hello.vhdl
-analyze syn_hello.vhdl
+
+for f in restrict1 assume1 assert1; do
+ synth -fpsl $f.vhdl -e $f > syn_$f.vhdl
+ analyze syn_$f.vhdl
+done
clean
echo "Test successful"