]> git.proxmox.com Git - ovs.git/commitdiff
travis: Obtain testsuite logs from the correct directory.
authorBen Pfaff <blp@ovn.org>
Wed, 18 Sep 2019 16:23:36 +0000 (09:23 -0700)
committerBen Pfaff <blp@ovn.org>
Fri, 20 Sep 2019 15:34:12 +0000 (08:34 -0700)
These days Automake uses _build/sub for its distcheck builds, not
plain _build.  (I don't know whether that is a change from previous
versions.)

Acked-by: Numan Siddique <nusididq@redhat.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
.travis/linux-build.sh
.travis/osx-build.sh

index 1577ae51659d6efbb7065271e93885cedd408ef0..661d5e89ed709cec9b996d9105a0106d3d53a2cc 100755 (executable)
@@ -172,7 +172,7 @@ if [ "$TESTSUITE" ]; then
     export DISTCHECK_CONFIGURE_FLAGS="$OPTS"
     if ! make distcheck TESTSUITEFLAGS=-j4 RECHECK=yes; then
         # testsuite.log is necessary for debugging.
-        cat */_build/tests/testsuite.log
+        cat */_build/sub/tests/testsuite.log
         exit 1
     fi
 else
index f11d7b9af5d6c6ad6b1deb19f2bb40cfe555b983..909173061a71bc6c2e2a34a2c1fcb96597321f0c 100755 (executable)
@@ -20,7 +20,7 @@ fi
 if [ "$TESTSUITE" ] && [ "$CC" != "clang" ]; then
     if ! make distcheck RECHECK=yes; then
         # testsuite.log is necessary for debugging.
-        cat */_build/tests/testsuite.log
+        cat */_build/sub/tests/testsuite.log
         exit 1
     fi
 fi