aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/sns01/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/sns01/testsuite.sh')
-rwxr-xr-xtestsuite/synth/sns01/testsuite.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/testsuite/synth/sns01/testsuite.sh b/testsuite/synth/sns01/testsuite.sh
index 2f17c5d8f..d9cb4503a 100755
--- a/testsuite/synth/sns01/testsuite.sh
+++ b/testsuite/synth/sns01/testsuite.sh
@@ -2,11 +2,17 @@
. ../../testenv.sh
-GHDL_STD_FLAGS=--ieee=synopsys
+GHDL_STD_FLAGS=-fsynopsys
+
for t in sns01; do
synth $t.vhdl -e $t > syn_$t.vhdl
+ # No analysis because of conflict between numeric_std.unsigned and
+ # std_logic_arith.unsigned
# analyze syn_$t.vhdl
clean
done
+synth_analyze sns02
+clean
+
echo "Test successful"