summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2018-12-01 07:00:37 +0100
committerAkim Demaille <akim.demaille@gmail.com>2018-12-01 11:13:08 +0100
commitcc422ce677f7b4b639f17e7b1f9fef44c549d7fa (patch)
tree42666727d685b9051fc563468d35cae3a53d0ff7 /.travis.yml
parentd2386a35f5a2c2bc10a03ba18319861d7bec0b9d (diff)
downloadbison-cc422ce677f7b4b639f17e7b1f9fef44c549d7fa.tar.gz
CI: also display the examples' test suite log
* .travis.yml: here.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 16853304..0a183300 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -339,7 +339,7 @@ script:
- if [[ -f ~/.bashrc ]]; then source ~/.bashrc; fi
- ./configure --enable-gcc-warnings CC="$CC" CXX="$CXX" $CONFIGUREFLAGS || { cat config.log && false; }
- make -j2 $MAKE_ARGS
- - if test ${PART-1} = 1; then make check VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && false; }; fi
+ - if test ${PART-1} = 1; then make check VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat test-suite.log && cat tests/testsuite.log && false; }; fi
- if test ${PART-1} = 1; then make maintainer-check-posix VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && false; }; fi
- if test ${PART-2} = 2; then make maintainer-check-g++ VERBOSE=1 TESTSUITEFLAGS=-j2 || { cat tests/testsuite.log && false; }; fi