aboutsummaryrefslogtreecommitdiff
path: root/test/basic
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-09-20 13:42:59 -0700
committerCarl Worth <cworth@cworth.org>2010-09-20 13:44:32 -0700
commit60c599036e528bc8a856c3312f0222cc7b1fd32a (patch)
tree53013d16b4a1d219ba59ecb351ce8e0682ca3322 /test/basic
parent265de5006f08a90371cc9caec0c0e6f702f42204 (diff)
test: Fix test suite so that --valgrind option works.
The output is ugly, and we need a better suppressions file, but this is at least a start.
Diffstat (limited to 'test/basic')
-rwxr-xr-xtest/basic2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/basic b/test/basic
index 8e68ef8..88704a1 100755
--- a/test/basic
+++ b/test/basic
@@ -52,7 +52,7 @@ test_expect_code 2 'failure to clean up causes the test to fail' '
# Ensure that all tests are being run
test_begin_subtest 'Ensure that all available tests will be run by notmuch-test'
tests_in_suite=$(grep TESTS= ../notmuch-test | sed -e "s/TESTS=\"\(.*\)\"/\1/" | tr " " "\n" | sort)
-available=$(ls -1 ../ | grep -v -E "^(aggregate-results.sh|Makefile|Makefile.local|notmuch-test|README|test-lib.sh|test-results|tmp.*)" | sort)
+available=$(ls -1 ../ | grep -v -E "^(aggregate-results.sh|Makefile|Makefile.local|notmuch-test|README|test-lib.sh|test-results|tmp.*|valgrind)" | sort)
test_expect_equal "$tests_in_suite" "$available"
################################################################