From: David Bremner Date: Sat, 23 Jan 2016 12:49:26 +0000 (-0400) Subject: test: refactor directory name sanitization X-Git-Url: https://rtime.felk.cvut.cz/gitweb/notmuch.git/commitdiff_plain/12534d5c4b02498173b0c63d063ae0a3c845b957?ds=sidebyside test: refactor directory name sanitization test_C and notmuch_search_files_sanitize were giving different output on the same path, which is not technically wrong, but slightly confusing. --- diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index c280939c..59a479c8 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -183,7 +183,7 @@ int main (int argc, char** argv) EOF cat <<'EOF' >EXPECTED == stdout == -Path already exists: CWD/mail +Path already exists: MAIL_DIR == stderr == EOF diff --git a/test/test-lib.sh b/test/test-lib.sh index 270c718b..6fe335b5 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -678,9 +678,14 @@ notmuch_search_sanitize () perl -pe 's/("?thread"?: ?)("?)................("?)/\1\2XXX\3/' } -notmuch_search_files_sanitize() +notmuch_search_files_sanitize () { - sed -e "s,$MAIL_DIR,MAIL_DIR," + notmuch_dir_sanitize +} + +notmuch_dir_sanitize () +{ + sed -e "s,$MAIL_DIR,MAIL_DIR," -e "s,${PWD},CWD,g" "$@" } NOTMUCH_SHOW_FILENAME_SQUELCH='s,filename:.*/mail,filename:/XXX/mail,' @@ -1180,7 +1185,7 @@ test_C () { echo "== stdout ==" > OUTPUT.stdout echo "== stderr ==" > OUTPUT.stderr ./${exec_file} "$@" 1>>OUTPUT.stdout 2>>OUTPUT.stderr - sed "s,${PWD},CWD,g" OUTPUT.stdout OUTPUT.stderr > OUTPUT + notmuch_dir_sanitize OUTPUT.stdout OUTPUT.stderr > OUTPUT }