btrfs-progs: tests: fix path for travis helper script
authorDavid Sterba <dsterba@suse.com>
Fri, 24 Nov 2017 14:41:33 +0000 (15:41 +0100)
committerDavid Sterba <dsterba@suse.com>
Wed, 3 Jan 2018 16:08:48 +0000 (17:08 +0100)
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 <dsterba@suse.com>
.travis.yml

index 50b3c1c..aaca698 100644 (file)
@@ -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"