aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna')
-rw-r--r--testsuite/gna/issue132/repro.vhdl4
-rwxr-xr-xtestsuite/gna/issue132/testsuite.sh11
2 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/issue132/repro.vhdl b/testsuite/gna/issue132/repro.vhdl
new file mode 100644
index 000000000..3b35665b9
--- /dev/null
+++ b/testsuite/gna/issue132/repro.vhdl
@@ -0,0 +1,4 @@
+package pkg is
+ constant a : integer := 5; -- Strange but valid character: é
+ -- Invalid ascii character €
+end pkg;
diff --git a/testsuite/gna/issue132/testsuite.sh b/testsuite/gna/issue132/testsuite.sh
new file mode 100755
index 000000000..5c3e58ab0
--- /dev/null
+++ b/testsuite/gna/issue132/testsuite.sh
@@ -0,0 +1,11 @@
+#! /bin/sh
+
+. ../../testenv.sh
+
+analyze_failure repro.vhdl
+analyze -C repro.vhdl
+analyze --mb-comments repro.vhdl
+
+clean
+
+echo "Test successful"