summaryrefslogtreecommitdiff
path: root/travis/run-tests.pl
diff options
context:
space:
mode:
authorBenedikt Heine <bebe@bebehei.de>2018-06-19 17:15:28 +0200
committerBenedikt Heine <bebe@bebehei.de>2018-06-19 17:17:51 +0200
commitbffc9ed96226dd45a820b57405a98ca0858c1fcd (patch)
treec48c1066a50479255cc5fae61eb2143a83ec5277 /travis/run-tests.pl
parenta073acd40666019305e14da9c997537b15d825d5 (diff)
Show differing results, if testcase fails
Diffstat (limited to 'travis/run-tests.pl')
-rwxr-xr-xtravis/run-tests.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/travis/run-tests.pl b/travis/run-tests.pl
index 960af2e..c335ff3 100755
--- a/travis/run-tests.pl
+++ b/travis/run-tests.pl
@@ -39,6 +39,8 @@ sub TestCase {
return 1;
} else {
say "Testing test case '", basename($dir), "'… ", BOLD, RED, "Failed!", RESET;
+ say "Expected: '$refres'";
+ say "Got: '$testres'";
return 0;
}
}