aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1817/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue1817/testsuite.sh')
-rwxr-xr-xtestsuite/gna/issue1817/testsuite.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/testsuite/gna/issue1817/testsuite.sh b/testsuite/gna/issue1817/testsuite.sh
new file mode 100755
index 000000000..5c20675ca
--- /dev/null
+++ b/testsuite/gna/issue1817/testsuite.sh
@@ -0,0 +1,29 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+GHDL_STD_FLAGS=--std=08
+
+if $GHDL --version | grep -q "GCC back-end code"; then
+ is_gcc=true
+else
+ is_gcc=false
+fi
+
+if [ "$is_gcc" = true ]; then
+ GHDL_FLAGS="-fprofile-arcs -ftest-coverage -Wl,--coverage"
+fi
+
+analyze full_adder.vhdl
+analyze full_adder_tb.vhdl
+
+# Do not try to elaborate, libgcov may not be available
+
+if [ "$is_gcc" = true ]; then
+ test -f full_adder.gcno
+ test -f full_adder_tb.gcno
+fi
+
+clean
+
+echo "Test successful"