mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
02a2eeb427
The files (test) scripts source (with builtin command `.`) provides information which the scripts depend, and without the `source` to succeed allowing script to continue may lead to dangerous situations (e.g. rm -rf "${undefined_variable}"/*). At the end of all source (.) lines construct ' || exit 1' was added; In our case the script script will exit if it cannot find (or read) the file to be sourced. Additionally script would also exits if the last command of the sourced file exited nonzero.
27 lines
725 B
Bash
Executable file
27 lines
725 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
test_description='the verbosity options of the test framework itself.'
|
|
|
|
. ./test-lib.sh || exit 1
|
|
|
|
test_expect_success 'print something in test_expect_success and pass' '
|
|
echo "hello stdout" &&
|
|
echo "hello stderr" >&2 &&
|
|
true
|
|
'
|
|
test_expect_success 'print something in test_expect_success and fail' '
|
|
echo "hello stdout" &&
|
|
echo "hello stderr" >&2 &&
|
|
false
|
|
'
|
|
test_begin_subtest 'print something between test_begin_subtest and test_expect_equal and pass'
|
|
echo "hello stdout"
|
|
echo "hello stderr" >&2
|
|
test_expect_equal "a" "a"
|
|
|
|
test_begin_subtest 'print something test_begin_subtest and test_expect_equal and fail'
|
|
echo "hello stdout"
|
|
echo "hello stderr" >&2
|
|
test_expect_equal "a" "b"
|
|
|
|
test_done
|