aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1131/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue1131/testsuite.sh')
-rwxr-xr-xtestsuite/gna/issue1131/testsuite.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/testsuite/gna/issue1131/testsuite.sh b/testsuite/gna/issue1131/testsuite.sh
index f5ecbbc3e..7837b9bdb 100755
--- a/testsuite/gna/issue1131/testsuite.sh
+++ b/testsuite/gna/issue1131/testsuite.sh
@@ -5,13 +5,14 @@
export GHDL_STD_FLAGS=--std=08
for f in dut repro2; do
- analyze $f.vhdl
- elab $f
+ analyze "$f".vhdl
+ elab "$f"
- if ghdl_has_feature $f ghw; then
- simulate $f --dump-rti
- simulate $f --wave=$f.ghw
- rm -f $f.ghw
+ if ghdl_has_feature "$f" ghw; then
+ simulate "$f" --dump-rti
+ simulate "$f" --wave="$f".ghw
+ ghw_diff "$f"
+ rm -f "$f".txt "$f".ghw
fi
done