aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/testsuite.sh
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-07-05 08:05:07 +0200
committerTristan Gingold <tgingold@free.fr>2017-07-05 08:05:07 +0200
commit5783528e1ecd9f7d072efa7a27006efff86549ed (patch)
tree93b23df6a50249515b031dc54925ebcf7ebff3a5 /testsuite/testsuite.sh
parent271edd6024b2c91c8330e4388998145b3b622601 (diff)
downloadghdl-5783528e1ecd9f7d072efa7a27006efff86549ed.tar.gz
ghdl-5783528e1ecd9f7d072efa7a27006efff86549ed.tar.bz2
ghdl-5783528e1ecd9f7d072efa7a27006efff86549ed.zip
vests: use ghdl --find-top instead of get_entities.
Move log redirection to upper testsuite.sh
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 ..
}