diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2014-04-09 02:32:21 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2014-04-09 02:34:31 -0700 |
commit | f8e12e2b396e0c475e1403ab8ac3fc4d63c1681e (patch) | |
tree | c786e2ddabdcbff559f46f19deff31b8b74d7d1e /testsuite/driver | |
parent | 50bfd4219157473fac47c70993fc2023a162a7f3 (diff) | |
download | haskell-f8e12e2b396e0c475e1403ab8ac3fc4d63c1681e.tar.gz |
Fix #5435, adding new test config check_stdout.
check_stdout(f) allows you to override the test framework's
diff based output checking with another mechanism. f is
a function which takes two arguments: the first is the
filename containing the observed stdout, the second is the
normaliser that would have been applied (in case you want
to read, normalise, and then do something.)
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Diffstat (limited to 'testsuite/driver')
-rw-r--r-- | testsuite/driver/testglobals.py | 5 | ||||
-rw-r--r-- | testsuite/driver/testlib.py | 16 |
2 files changed, 20 insertions, 1 deletions
diff --git a/testsuite/driver/testglobals.py b/testsuite/driver/testglobals.py index 203d85f336..7b9bd9a686 100644 --- a/testsuite/driver/testglobals.py +++ b/testsuite/driver/testglobals.py @@ -252,6 +252,11 @@ class TestOptions: # Extra output normalisation self.extra_normaliser = lambda x: x + # Custom output checker, otherwise do a comparison with expected + # stdout file. Accepts two arguments: filename of actual stdout + # output, and a normaliser function given other test options + self.check_stdout = None + # Extra normalisation for compiler error messages self.extra_errmsg_normaliser = lambda x: x diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index d8fbd02d89..0657db83d3 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -468,6 +468,14 @@ def _compile_cmd_prefix( name, opts, prefix ): # ---- +def check_stdout( f ): + return lambda name, opts, f=f: _check_stdout(name, opts, f) + +def _check_stdout( name, opts, f ): + opts.check_stdout = f + +# ---- + def normalise_slashes( name, opts ): opts.extra_normaliser = normalise_slashes_ @@ -1487,8 +1495,14 @@ def check_stdout_ok( name ): else: return normalise_output(str) + two_norm = two_normalisers(norm, getTestOpts().extra_normaliser) + + check_stdout = getTestOpts().check_stdout + if check_stdout: + return check_stdout(actual_stdout_file, two_norm) + return compare_outputs('stdout', \ - two_normalisers(norm, getTestOpts().extra_normaliser), \ + two_norm, \ expected_stdout_file, actual_stdout_file) def dump_stdout( name ): |