aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/testsuite.sh')
-rwxr-xr-xtestsuite/testsuite.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/testsuite/testsuite.sh b/testsuite/testsuite.sh
index 8f3e04675..6cad0e2d7 100755
--- a/testsuite/testsuite.sh
+++ b/testsuite/testsuite.sh
@@ -33,9 +33,12 @@ do_gna() {
# The VESTS testsuite: compliance testsuite, from: https://github.com/nickg/vests.git 388250486a
do_vests() {
- gnatmake get_entities 1>> ../log.log 2>&1
cd vests
- ./testsuite.sh
+ if [ $flag_log = yes ]; then
+ ./testsuite.sh 1>> ../../log.log 2>&1
+ else
+ ./testsuite.sh
+ fi
cd ..
}