[PATCH] test: move nonexistant directory to something under notmuch's control.
David Bremner
david at tethera.net
Tue Apr 7 05:15:00 PDT 2015
Apparently some systems actually have a directory called /nonexistent.
It's hard to fathom a good reason for that, but oh well. As long as we
don't create such a directory inside the notmuch source tree, the new
version should be more robust.
---
This should (hopefully) fix the current failures on travis
test/T560-lib-error.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh
index 828a44b..57abb28 100755
--- a/test/T560-lib-error.sh
+++ b/test/T560-lib-error.sh
@@ -43,13 +43,13 @@ int main (int argc, char** argv)
{
notmuch_database_t *db;
notmuch_status_t stat;
- stat = notmuch_database_open ("/nonexistent/foo", 0, 0);
+ stat = notmuch_database_open ("./nonexistent/foo", 0, 0);
}
EOF
cat <<'EOF' >EXPECTED
== stdout ==
== stderr ==
-Error opening database at /nonexistent/foo/.notmuch: No such file or directory
+Error opening database at ./nonexistent/foo/.notmuch: No such file or directory
EOF
test_expect_equal_file EXPECTED OUTPUT
--
2.1.4
More information about the notmuch
mailing list