aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/synth38/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/synth38/testsuite.sh')
-rwxr-xr-xtestsuite/synth/synth38/testsuite.sh13
1 files changed, 9 insertions, 4 deletions
diff --git a/testsuite/synth/synth38/testsuite.sh b/testsuite/synth/synth38/testsuite.sh
index 243a72f8b..8fbbd24ae 100755
--- a/testsuite/synth/synth38/testsuite.sh
+++ b/testsuite/synth/synth38/testsuite.sh
@@ -2,10 +2,15 @@
. ../../testenv.sh
-for f in modulo_test; do
- synth $f.vhdl -e $f > syn_$f.vhdl
-# analyze syn_$f.vhdl
+for t in modulo_test; do
+ analyze $t.vhdl tb_$t.vhdl
+ elab_simulate tb_$t
+ clean
+
+ synth $t.vhdl -e $t > syn_$t.vhdl
+ analyze syn_$t.vhdl tb_$t.vhdl
+ elab_simulate tb_$t --ieee-asserts=disable-at-0
+ clean
done
-clean
echo "Test successful"