Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
5ca9e65d
Commit
5ca9e65d
authored
Jul 18, 2007
by
Ian Lynagh
Browse files
Skip the GHCi debugger tests when unregisterised (trac #1545)
parent
adcee390
Changes
3
Hide whitespace changes
Inline
Side-by-side
testsuite/config/ghc
View file @
5ca9e65d
...
...
@@ -40,6 +40,8 @@ if (ghc_with_profiling == 1):
if (ghc_with_interpreter == 1):
config.run_ways.append('ghci')
config.unregisterised = (ghc_unregisterised == 1)
if (ghc_with_threaded_rts == 1):
config.run_ways.append('threaded1')
if (ghc_with_smp == 1):
...
...
testsuite/mk/test.mk
View file @
5ca9e65d
...
...
@@ -71,6 +71,12 @@ else
RUNTEST_OPTS
+=
-e
ghc_with_interpreter
=
0
endif
ifeq
"$(GhcUnregisterised)" "YES"
RUNTEST_OPTS
+=
-e
ghc_unregisterised
=
1
else
RUNTEST_OPTS
+=
-e
ghc_unregisterised
=
0
endif
ifeq
"$(filter thr, $(GhcRTSWays))" "thr"
RUNTEST_OPTS
+=
-e
ghc_with_threaded_rts
=
1
else
...
...
testsuite/tests/ghc-regress/ghci.debugger/scripts/all.T
View file @
5ca9e65d
# trac #1545: GHCi debugger doesn't work on an unregisterised compiler
def
f
(
opts
):
if
config
.
unregisterised:
opts
.
skip
=
1
setTestOpts
(
f
)
setTestOpts
(
extra_run_opts
('
-ignore-dot-ghci
'))
test
('
print001
',
normal
,
ghci_script
,
['
print001.script
'])
...
...
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