]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Improve error message from expect_(not_)contains
authorJoel Rosdahl <joel@rosdahl.net>
Tue, 1 Sep 2020 15:10:38 +0000 (17:10 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Tue, 1 Sep 2020 17:58:40 +0000 (19:58 +0200)
test/run

index fab05c365e8dff174f50e28198879ee050640748..2bc580dbe2c363f1d42ed347a7f229c7ada7ddcc 100755 (executable)
--- a/test/run
+++ b/test/run
@@ -234,7 +234,7 @@ expect_contains() {
         test_failed "$file not found"
     fi
     if ! fgrep -q "$string" "$file"; then
-        test_failed "File $file does not contain: $string. Actual content: $(cat $file)"
+        test_failed "File $file does not contain \"$string\"\nActual content: $(cat $file)"
     fi
 }
 
@@ -246,7 +246,7 @@ expect_not_contains() {
         test_failed "$file not found"
     fi
     if fgrep -q "$string" "$file"; then
-        test_failed "File $file contains: $string. Actual content: $(cat $file)"
+        test_failed "File $file contains \"$string\"\nActual content: $(cat $file)"
     fi
 }