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>
master
David Sterba 2017-11-24 15:41:33 +01:00
parent 9fe889ac02
commit 89568f1bdf
1 changed files with 4 additions and 4 deletions

View 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"