From: David Bremner Date: Fri, 29 Jan 2016 11:53:13 +0000 (-0400) Subject: test: canonicalize quotes in xapian error messages X-Git-Url: http://rtime.felk.cvut.cz/gitweb/notmuch.git/commitdiff_plain/3dcd6e9a23cb071a5c1bb474180c3b57650df56b test: canonicalize quotes in xapian error messages These differ between 1.2 and 1.3, so we transform the 1.2 backquote to a single quote for compatibility --- diff --git a/test/T360-symbol-hiding.sh b/test/T360-symbol-hiding.sh index 4ec0ea65..89e7f165 100755 --- a/test/T360-symbol-hiding.sh +++ b/test/T360-symbol-hiding.sh @@ -15,11 +15,11 @@ test_begin_subtest 'running test' run_test mkdir -p ${PWD}/fakedb/.notmuch ( LD_LIBRARY_PATH="$TEST_DIRECTORY/../lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" \ $TEST_DIRECTORY/symbol-test ${PWD}/fakedb ${PWD}/nonexistent \ - 2>&1 | sed "s,${PWD},CWD,g") > OUTPUT + 2>&1 | notmuch_dir_sanitize | sed "s,\`,\',g") > OUTPUT cat < EXPECTED A Xapian exception occurred opening database: Couldn't stat 'CWD/fakedb/.notmuch/xapian' -caught No chert database found at path \`CWD/nonexistent' +caught No chert database found at path 'CWD/nonexistent' EOF test_expect_equal_file EXPECTED OUTPUT