X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2FT000-basic.sh;h=78e183361e7d5c572b4143c8160d02f722e15803;hp=9c94b62c99df3d4e0cba2d74231e85a9d2355540;hb=b8f12bd3717aa446ef04197734af7a055e6909fe;hpb=a755c9d6a9099366cc82ba3a4bee8e6d2b83d529 diff --git a/test/T000-basic.sh b/test/T000-basic.sh index 9c94b62c..78e18336 100755 --- a/test/T000-basic.sh +++ b/test/T000-basic.sh @@ -14,7 +14,7 @@ then exit 1 fi -. ./test-lib.sh +. ./test-lib.sh || exit 1 ################################################################ # Test harness @@ -23,7 +23,7 @@ test_expect_success 'success is reported like this' ' ' test_set_prereq HAVEIT haveit=no -test_expect_success HAVEIT 'test runs if prerequisite is satisfied' ' +test_expect_success 'test runs if prerequisite is satisfied' ' test_have_prereq HAVEIT && haveit=yes ' @@ -86,8 +86,13 @@ test_expect_success \ 'NOTMUCH_CONFIG is set and points to an existing file' \ 'test -f "${NOTMUCH_CONFIG}"' -test_expect_success \ - 'PATH is set to this repository' \ - 'test "`echo $PATH|cut -f1 -d: | sed -e 's,/test/valgrind/bin$,,'`" = "`dirname ${TEST_DIRECTORY}`"' +test_begin_subtest 'PATH is set to build directory' +test_expect_equal \ + "$(dirname ${TEST_DIRECTORY})" \ + "$(echo $PATH|cut -f1 -d: | sed -e 's,/test/valgrind/bin$,,')" + +test_begin_subtest 'notmuch is compiled with debugging symbols' +readelf --sections $(command -v notmuch) | grep \.debug +test_expect_equal 0 $? test_done