diff options
author | Carl Worth <cworth@cworth.org> | 2010-09-20 13:42:59 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-09-20 13:44:32 -0700 |
commit | 60c599036e528bc8a856c3312f0222cc7b1fd32a (patch) | |
tree | 53013d16b4a1d219ba59ecb351ce8e0682ca3322 /test/basic | |
parent | 265de5006f08a90371cc9caec0c0e6f702f42204 (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-x | test/basic | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" ################################################################ |