ci: Really show test-suite.log on travis
authorDan Nicholson <nicholson@endlessm.com>
Thu, 16 Nov 2017 17:27:14 +0000 (17:27 +0000)
committerAtomic Bot <atomic-devel@projectatomic.io>
Fri, 1 Dec 2017 19:00:18 +0000 (19:00 +0000)
The test-suite.log file is created in the top directory, not in test
(which isn't even a directory here).

Closes: #1352
Approved by: dbnicholson

ci/travis-build.sh

index 885e3ce200300f1e0609775523066d244aea12a8..3fd969bdced6a0fe55b4bbecea7c0d478a0d57c1 100755 (executable)
@@ -90,9 +90,9 @@ make="make -j${ci_parallel} V=1 VERBOSE=1"
 
 ${make}
 [ "$ci_test" = no ] || ${make} check || maybe_fail_tests
-cat test/test-suite.log || :
+cat test-suite.log || :
 [ "$ci_test" = no ] || ${make} distcheck || maybe_fail_tests
-cat test/test-suite.log || :
+cat test-suite.log || :
 
 ${make} install DESTDIR=$(pwd)/DESTDIR
 ( cd DESTDIR && find . )
@@ -104,7 +104,7 @@ if [ "$ci_sudo" = yes ] && [ "$ci_test" = yes ]; then
         GI_TYPELIB_PATH=/usr/local/lib/girepository-1.0 \
         ${make} installcheck || \
     maybe_fail_tests
-    cat test/test-suite.log || :
+    cat test-suite.log || :
 fi
 
 # vim:set sw=4 sts=4 et: