aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/bug01
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/bug01')
-rwxr-xr-xtestsuite/synth/bug01/testsuite.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/synth/bug01/testsuite.sh b/testsuite/synth/bug01/testsuite.sh
index 423496718..a3d0d3f95 100755
--- a/testsuite/synth/bug01/testsuite.sh
+++ b/testsuite/synth/bug01/testsuite.sh
@@ -2,8 +2,10 @@
. ../../testenv.sh
-synth display.vhdl -e display > syn_display.vhdl
-analyze syn_display.vhdl
+for f in display; do
+ synth $f.vhdl -e $f > syn_$f.vhdl
+ analyze syn_$f.vhdl
+done
clean
echo "Test successful"