X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=test%2FT490-parse-time-string.sh;h=3b6e48c42aefe040ec926c1e634bab3c9ffbc7a0;hb=HEAD;hp=6aa9d433bfd40da5562aca16cb0ff79943d502d3;hpb=6aeef2ee15d16a0376f5bad8309a1da99fb73004;p=notmuch diff --git a/test/T490-parse-time-string.sh b/test/T490-parse-time-string.sh index 6aa9d433..3b6e48c4 100755 --- a/test/T490-parse-time-string.sh +++ b/test/T490-parse-time-string.sh @@ -1,16 +1,18 @@ #!/usr/bin/env bash test_description="date/time parser module" -. ./test-lib.sh +. $(dirname "$0")/test-lib.sh || exit 1 + +if [ -n "${NOTMUCH_TEST_INSTALLED-}" ]; then + test_done +fi # Sanity/smoke tests for the date/time parser independent of notmuch -_date () -{ +_date () { date -d "$*" +%s } -_parse_time () -{ +_parse_time () { ${TEST_DIRECTORY}/parse-time --format=%s "$*" }