Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
29406aab
Commit
29406aab
authored
Jan 31, 2007
by
Ian Lynagh
Browse files
Ignore output when told to in the ghci way
parent
bf516c4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/driver/testlib.py
View file @
29406aab
...
...
@@ -713,7 +713,8 @@ def interpreter_run( name, way, extra_hc_opts, compile_only, top_mod ):
# ToDo: if the sub-shell was killed by ^C, then exit
if
check_stdout_ok
(
name
)
and
check_stderr_ok
(
name
):
if
getTestOpts
().
ignore_output
or
(
check_stdout_ok
(
name
)
and
check_stderr_ok
(
name
)):
return
'pass'
else
:
return
'fail'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment