diff options
author | Carl Worth <cworth@cworth.org> | 2011-01-15 14:03:33 -0800 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2011-01-15 15:37:43 -0800 |
commit | 8a8d0b739509cf4c367f52aac26fd131fe665b46 (patch) | |
tree | db2a058a243ff9168382d5435c66ec87837e72b3 /test/basic | |
parent | 8bef9ba9220956beb8ff634c16344fb00689b973 (diff) |
test/basic: Ignore new files ending in ~
We don't need to complain that temporary editor backups are not added
to the list of tests to be run.
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.*|valgrind|corpus*|emacs.expected-output|smtp-dummy|smtp-dummy.c|test-verbose|test.expected-output)" | 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|smtp-dummy|smtp-dummy.c|test-verbose|test.expected-output|.*~)" | sort) test_expect_equal "$tests_in_suite" "$available" EXPECTED=../test.expected-output |