summaryrefslogtreecommitdiff
path: root/test/packing
diff options
context:
space:
mode:
authorAlex Gorrod <alexander.gorrod@mongodb.com>2015-07-01 17:04:47 +1000
committerAlex Gorrod <alexander.gorrod@mongodb.com>2015-07-01 17:04:47 +1000
commit0925658d39dd418c5082dc14a315073ba9534cb1 (patch)
treeb73df3abc397965b9d8a5c71c16c0a46ea35a2a3 /test/packing
parentd04083d3402501b06301196e409e4bf034aeee35 (diff)
parent036db3dbe3312a2048b8e1a18bec2e35255a68fb (diff)
downloadmongo-0925658d39dd418c5082dc14a315073ba9534cb1.tar.gz
Merge pull request #2037 from wiredtiger/valgrind-tests
WT-1987 Add a TEST_WRAPPER variable for running all tests with valgrind or similar
Diffstat (limited to 'test/packing')
-rwxr-xr-xtest/packing/smoke.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/packing/smoke.sh b/test/packing/smoke.sh
index e49e7a67494..026f4883d8e 100755
--- a/test/packing/smoke.sh
+++ b/test/packing/smoke.sh
@@ -1,9 +1,10 @@
#! /bin/sh
+set -e
+
# Smoke-test integer packing as part of running "make check". Don't just run
# everything because some of the code in this directory is aimed at testing the
# performance of the packing code
-./packing-test
-
-./intpack-test3
+$TEST_WRAPPER ./packing-test
+$TEST_WRAPPER ./intpack-test3