aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/testsuite.sh')
-rwxr-xr-xtestsuite/testsuite.sh15
1 files changed, 14 insertions, 1 deletions
diff --git a/testsuite/testsuite.sh b/testsuite/testsuite.sh
index 02d280d38..238a6f95c 100755
--- a/testsuite/testsuite.sh
+++ b/testsuite/testsuite.sh
@@ -17,19 +17,32 @@ do_gna ()
cd ..
}
+# The VESTS testsuite:
+# compliance testsuite, from: https://github.com/nickg/vests.git 388250486a
+do_vests ()
+{
+ echo "**** VESTS ****"
+ echo "***************"
+ cd vests
+ ./testsuite.sh
+ cd ..
+}
+
# Run a testsuite
do_test ()
{
case $1 in
gna)
do_gna;;
+ vests)
+ do_vests;;
*)
echo "$0: test name '$1' is unknown"
exit 1;;
esac
}
-all_list="gna"
+all_list="gna vests"
echo "GHDL is: $GHDL"