X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=t%2Ftest-lib.sh;h=f1bb8cf65b66ff3890659f2b6009bae08d3cbd77;hb=02c1e053f8ab751551b9f1ad712c3d0c6358bc27;hp=b7d675ea0def671529e13732c52143bb22290288;hpb=65a0002eb560b7248cbb0b4f143d00053b66bccc;p=paraslash.git 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 "" }