3 test_description='the verbosity options of the test framework itself.'
5 . $(dirname "$0")/test-lib.sh || exit 1
7 test_begin_subtest 'print something in test_expect_success and pass'
10 echo "hello stderr" >&2 &&
13 test_begin_subtest 'print something in test_expect_success and fail'
15 echo "hello stdout" &&
16 echo "hello stderr" >&2 &&
19 test_begin_subtest 'print something between test_begin_subtest and test_expect_equal and pass'
21 echo "hello stderr" >&2
22 test_expect_equal "a" "a"
24 test_begin_subtest 'print something test_begin_subtest and test_expect_equal and fail'
26 echo "hello stderr" >&2
27 test_expect_equal "a" "b"