From 8363e766cb049c652fd9b4563cb237b2abe9f364 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Tue, 18 Dec 2018 07:35:32 +0100 Subject: Run sanity checks. --- testsuite/testsuite.sh | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'testsuite') diff --git a/testsuite/testsuite.sh b/testsuite/testsuite.sh index 0720a629b..dd3f9e003 100755 --- a/testsuite/testsuite.sh +++ b/testsuite/testsuite.sh @@ -14,27 +14,37 @@ for opt; do esac done -if [ x$tests = x ]; then tests="gna vests"; fi +if [ x$tests = x ]; then tests="sanity gna vests"; fi # The GNA testsuite: regression testsuite using reports/issues from gna.org -do_gna() { +do_gna() +{ cd gna ./testsuite.sh cd .. } # The VESTS testsuite: compliance testsuite, from: https://github.com/nickg/vests.git 388250486a -do_vests() { +do_vests() +{ cd vests ./testsuite.sh cd .. } +do_sanity() +{ + cd sanity + ./testsuite.sh + cd .. +} + # Run a testsuite do_test() { case $1 in gna) do_gna;; vests) do_vests;; + sanity) do_sanity;; *) echo "$0: test name '$1' is unknown" exit 1;; -- cgit v1.2.3