X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2Ftest-lib-common.sh;h=5eb618c1f51aabffb562d4b2ac9dc6e646b668f7;hp=b1fc33d4044d45a2cc248508604094174b0efaf2;hb=9ee29ad6f0805dc55e63f8a04a68a1f55d0c382b;hpb=110694b00b79793b3c09a0349c0ff7608df551d6 diff --git a/test/test-lib-common.sh b/test/test-lib-common.sh index b1fc33d4..5eb618c1 100644 --- a/test/test-lib-common.sh +++ b/test/test-lib-common.sh @@ -34,6 +34,18 @@ 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)