summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-07-03 11:33:19 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-07-14 18:31:30 +0200
commit839e9f342b0f85f99f3033dc91a31843ea835f30 (patch)
tree40b1aa23dd23f85f43dd9eb7e529a825797a5283
parentf5e6907d5232ca9c05cb8a0b99d809590ddcde18 (diff)
downloadcurl-839e9f342b0f85f99f3033dc91a31843ea835f30.tar.gz
test1119: verify stdout in the test
So that failures will be displayed in the terminal, as it makes test failures visually displayed easier and faster. Closes #5644
-rw-r--r--tests/data/test11196
-rwxr-xr-xtests/symbol-scan.pl3
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/data/test1119 b/tests/data/test1119
index 017f598f3..5fb3c944a 100644
--- a/tests/data/test1119
+++ b/tests/data/test1119
@@ -22,4 +22,10 @@ Verify that symbols-in-versions and headers are in sync
</command>
</client>
+<verify>
+<stdout>
+OK
+</stdout>
+</verify>
+
</testcase>
diff --git a/tests/symbol-scan.pl b/tests/symbol-scan.pl
index e8f594ee6..7905ee772 100755
--- a/tests/symbol-scan.pl
+++ b/tests/symbol-scan.pl
@@ -178,3 +178,6 @@ if($summary) {
if($misses) {
exit 2; # there are stuff to attend to!
}
+else {
+ print "OK\n";
+}