From 89568f1bdfac95a02c0244d06920e485fdedfa0c Mon Sep 17 00:00:00 2001 From: David Sterba Date: Fri, 24 Nov 2017 15:41:33 +0100 Subject: btrfs-progs: tests: fix path for travis helper script The helper script ./travis-should-run-test has been moved to a directory in 4.13.3 but the path in the config was not updated. This was not caught in the CI environment and the tests did not report a failure. Signed-off-by: David Sterba --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 50b3c1c8..aaca6988 100644 --- a/.travis.yml +++ b/.travis.yml @@ -81,8 +81,8 @@ addons: branch_pattern: coverity_scan script: - - "if ./travis-should-run-test; then make TEST_LOG=dump test-cli; fi" - - "if ./travis-should-run-test; then make TEST_LOG=dump test-mkfs; fi" - - "if ./travis-should-run-test; then make TEST_LOG=dump test-check; fi" - - "if ./travis-should-run-test; then make TEST_LOG=dump test-misc; fi" + - "if travis/should-run-test; then make TEST_LOG=dump test-cli; fi" + - "if travis/should-run-test; then make TEST_LOG=dump test-mkfs; fi" + - "if travis/should-run-test; then make TEST_LOG=dump test-check; fi" + - "if travis/should-run-test; then make TEST_LOG=dump test-misc; fi" - "if [ $TRAVIS_BRANCH = release-test ]; then make TEST_LOG=dump test-convert; fi" -- cgit v1.2.3