diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-01-21 10:36:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-01-21 10:36:35 +0000 |
commit | 8471a82c85b29c383e91e62d2e76bb2e700928d2 (patch) | |
tree | 2b70dbbb879979660d3aab9041d565555d5dc1c8 | |
parent | ed4dff63b948c84d5cadda4e640ec3ce55d597f0 (diff) |
run 'make test-full' instead of 'make test' to get more details in case of
errors
-rwxr-xr-x | testcurl.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testcurl.sh b/testcurl.sh index 25dd9ed6d..22bdf819d 100755 --- a/testcurl.sh +++ b/testcurl.sh @@ -123,8 +123,8 @@ else die fi -echo "testcurl: now run make test" -make test 2>&1 | sed -e "s:$pwd::g" | tee build.log +echo "testcurl: now run make test-full" +make test-full 2>&1 | sed -e "s:$pwd::g" | tee build.log if { grep "^TESTFAIL:" build.log; } then echo "testcurl: the tests were not successful" |