summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2017-11-24 15:41:33 +0100
committerDavid Sterba <dsterba@suse.com>2018-01-03 17:08:48 +0100
commit89568f1bdfac95a02c0244d06920e485fdedfa0c (patch)
tree674108f0bb122cb2c56809a74e9dcc1ab99a4f31 /.travis.yml
parent9fe889ac02b9c49b885c8999f5dd4e192697fa83 (diff)
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 <dsterba@suse.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files 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"