diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-07-08 20:31:35 -0400 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2019-07-18 20:55:11 -0400 |
commit | b16cabc1b7ea1fd087df8f9ab977da629c92af9f (patch) | |
tree | 5924d498294526a6ed397b78738ec4bd877b7db5 /testsuite | |
parent | eb8c40e3c9e1df6f1f35d8f711cf58e13c629295 (diff) | |
download | haskell-b16cabc1b7ea1fd087df8f9ab977da629c92af9f.tar.gz |
testsuite: Print output from hp2ps
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/driver/testlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index e394e484ca..5b94c63073 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -1746,7 +1746,7 @@ def check_hp_ok(name: TestName) -> bool: # do not qualify for hp2ps because we should be in the right directory hp2psCmd = 'cd "{opts.testdir}" && {{hp2ps}} {name}'.format(**locals()) - hp2psResult = runCmd(hp2psCmd) + hp2psResult = runCmd(hp2psCmd, print_output=True) actual_ps_path = in_testdir(name, 'ps') |