X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2Ftest-lib-common.sh;h=4e17b781e26298c3abefec9ec7d2c1e7e9e28644;hb=a9fec12a0804113596c927d45f627f8b874aab67;hp=e1eaa5a03984ccd2372d9e60e2b74cdc0dcd2225;hpb=20b7e0ff2f12e612dee00efc6ff1634aae8172a4;p=notmuch diff --git a/test/test-lib-common.sh b/test/test-lib-common.sh index e1eaa5a0..4e17b781 100644 --- a/test/test-lib-common.sh +++ b/test/test-lib-common.sh @@ -34,10 +34,26 @@ find_notmuch_path () done } +backup_database () { + test_name=$(basename $0 .sh) + rm -rf notmuch-dir-backup."$test_name" + cp -pR ${MAIL_DIR}/.notmuch notmuch-dir-backup."${test_name}" +} + +restore_database () { + test_name=$(basename $0 .sh) + rm -rf ${MAIL_DIR}/.notmuch + cp -pR notmuch-dir-backup."${test_name}" ${MAIL_DIR}/.notmuch +} + # Test the binaries we have just built. The tests are kept in # test/ subdirectory and are run in 'trash directory' subdirectory. -TEST_DIRECTORY=$(pwd) +TEST_DIRECTORY=$(pwd -P) notmuch_path=`find_notmuch_path "$TEST_DIRECTORY"` + +# configure output +. $notmuch_path/sh.config || exit 1 + if test -n "$valgrind" then make_symlink () { @@ -98,12 +114,12 @@ then PATH=$GIT_VALGRIND/bin:$PATH GIT_EXEC_PATH=$GIT_VALGRIND/bin export GIT_VALGRIND - test -n "$notmuch_path" && MANPATH="$notmuch_path/man:$MANPATH" + test -n "$notmuch_path" && MANPATH="$notmuch_path/doc/_build/man" else # normal case if test -n "$notmuch_path" then PATH="$notmuch_path:$PATH" - MANPATH="$notmuch_path/man:$MANPATH" + MANPATH="$notmuch_path/doc/_build/man" fi fi export PATH MANPATH @@ -118,7 +134,7 @@ esac test ! -z "$debug" || remove_tmp=$TMP_DIRECTORY rm -fr "$test" || { GIT_EXIT_OK=t - echo >&5 "FATAL: Cannot prepare test area" + echo >&6 "FATAL: Cannot prepare test area" exit 1 }