diff options
author | David Hows <howsdav@gmail.com> | 2016-09-28 11:34:46 +1000 |
---|---|---|
committer | Alex Gorrod <alexander.gorrod@mongodb.com> | 2016-09-28 11:34:46 +1000 |
commit | 14339bb76144a3ceeff8bd51e3b8062b7c7bc33d (patch) | |
tree | 5380c52226be78b95dbab235f1b74f6ed22b1bcf /test/checkpoint | |
parent | 50bfdbcdcf807325be2f82ec041d2c36c8eeeea3 (diff) | |
download | mongo-14339bb76144a3ceeff8bd51e3b8062b7c7bc33d.tar.gz |
WT-2895 Reduce the runtime of make check testing with disable long (#3052)
Mostly in order to allow valgrind runs with make check to finish in a reasonable time.
Diffstat (limited to 'test/checkpoint')
-rwxr-xr-x | test/checkpoint/smoke.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/checkpoint/smoke.sh b/test/checkpoint/smoke.sh index 2f1d4345ad7..123d4e00df5 100755 --- a/test/checkpoint/smoke.sh +++ b/test/checkpoint/smoke.sh @@ -6,6 +6,9 @@ set -e echo "checkpoint: 3 mixed tables" $TEST_WRAPPER ./t -T 3 -t m +# We are done if short tests are requested +test -z "$TESTUTIL_DISABLE_LONG_TESTS" || exit 0 + echo "checkpoint: 6 column-store tables" $TEST_WRAPPER ./t -T 6 -t c |