diff options
Diffstat (limited to 'test/test.sh')
-rwxr-xr-x | test/test.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test.sh b/test/test.sh index 1662eed..1c2ce66 100755 --- a/test/test.sh +++ b/test/test.sh @@ -108,6 +108,9 @@ curl_check_keyword() { if ! grep --fixed-strings --quiet -- "$keyword" "$curl_output_file"; then dump "The following pattern hasn't been found:" dump "$keyword" + dump "The output was:" + cat -- "$curl_output_file" + return 1 fi done } |