X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=t%2Ftest-lib.sh;h=f1bb8cf65b66ff3890659f2b6009bae08d3cbd77;hp=b7d675ea0def671529e13732c52143bb22290288;hb=e65bdaa6b207d5cd409acaa5d0d33fe85dd7a28d;hpb=290d89f17769d1ad8fe9abb5e432939268f74f1a diff --git a/t/test-lib.sh b/t/test-lib.sh index b7d675ea..f1bb8cf6 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -162,7 +162,7 @@ test_duration() test_expect_success() { (($# != 2)) && error "bug: not 2 parameters to test_expect_success()" - say >&3 "expecting success: $2" + echo >&3 "expecting success: $2" _test_run "$1" "$2" "success" echo >&3 "" } @@ -170,7 +170,7 @@ test_expect_success() test_expect_failure() { (($# != 2)) && error "bug: not 2 parameters to test_expect_failure()" - say >&3 "expecting failure: $2" + echo >&3 "expecting failure: $2" _test_run "$1" "$2" "failure" echo >&3 "" }