aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/testenv.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/testenv.sh')
-rw-r--r--testsuite/testenv.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/testenv.sh b/testsuite/testenv.sh
index 9ae7197dc..93009984b 100644
--- a/testsuite/testenv.sh
+++ b/testsuite/testenv.sh
@@ -109,6 +109,13 @@ synth()
"$GHDL" --synth $GHDL_STD_FLAGS $GHDL_FLAGS $@
}
+# Synthesis of a single file and analyze the result
+synth_analyze()
+{
+ synth $1.vhdl -e > syn_$1.vhdl
+ analyze syn_$1.vhdl
+}
+
# Check if a feature is present
ghdl_has_feature ()
{