X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2Ftest-lib-common.sh;h=5eb618c1f51aabffb562d4b2ac9dc6e646b668f7;hb=727fcd18c6a3897622582e71a2d71081e3ae40ea;hp=f99ed11162ade498eaef756b9a65774a6a29afec;hpb=7fcd100a2f4fcc3762f2f73bcca3c30cc971b67a;p=notmuch diff --git a/test/test-lib-common.sh b/test/test-lib-common.sh index f99ed111..5eb618c1 100644 --- a/test/test-lib-common.sh +++ b/test/test-lib-common.sh @@ -34,13 +34,25 @@ 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) notmuch_path=`find_notmuch_path "$TEST_DIRECTORY"` # configure output -. $notmuch_path/sh.config +. $notmuch_path/sh.config || exit 1 if test -n "$valgrind" then