diff options
Diffstat (limited to 'ci/run-tests.sh')
-rwxr-xr-x | ci/run-tests.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ci/run-tests.sh b/ci/run-tests.sh new file mode 100755 index 0000000000..73e273fac7 --- /dev/null +++ b/ci/run-tests.sh @@ -0,0 +1,18 @@ +#!/bin/sh +# +# Test Git +# + +. ${0%/*}/lib-travisci.sh + +ln -s "$cache_dir/.prove" t/.prove + +make --quiet test +if test "$jobname" = "linux-gcc" +then + GIT_TEST_SPLIT_INDEX=YesPlease make --quiet test +fi + +check_unignored_build_artifacts + +save_good_tree |