diff options
author | Benedikt Heine <bebe@bebehei.de> | 2018-06-19 17:15:28 +0200 |
---|---|---|
committer | Benedikt Heine <bebe@bebehei.de> | 2018-06-19 17:17:51 +0200 |
commit | bffc9ed96226dd45a820b57405a98ca0858c1fcd (patch) | |
tree | c48c1066a50479255cc5fae61eb2143a83ec5277 /travis/run-tests.pl | |
parent | a073acd40666019305e14da9c997537b15d825d5 (diff) |
Show differing results, if testcase fails
Diffstat (limited to 'travis/run-tests.pl')
-rwxr-xr-x | travis/run-tests.pl | 2 |
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; } } |