aboutsummaryrefslogtreecommitdiff
path: root/test/basic
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-10-22 18:00:17 -0700
committerCarl Worth <cworth@cworth.org>2010-10-22 18:03:39 -0700
commitfad0c3b00b0a38215ddb18f9930d95647a01648c (patch)
tree2bf09a8949ebfea81df0ba1735d07815f5f6df24 /test/basic
parent14a2227f77bcf69235034326fb35440b31354cea (diff)
test: Fix false failure from the "available tests" test.
We recently added a new sub-directory below test, so we have to blacklist it explicitly in this test.
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 fd89e9e..9cdee56 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.*|valgrind|corpus*)" | sort)
+available=$(ls -1 ../ | grep -v -E "^(aggregate-results.sh|Makefile|Makefile.local|notmuch-test|README|test-lib.sh|test-results|tmp.*|valgrind|corpus*|emacs.expected-output)" | sort)
test_expect_equal "$tests_in_suite" "$available"
################################################################