Skip to content
GitLab
Menu
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
ddb2a3d6
Commit
ddb2a3d6
authored
Oct 23, 2008
by
Simon Marlow
Browse files
skip conc069/conc070(ghci) if we have no threaded RTS
parent
881b85f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/tests/ghc-regress/concurrent/should_run/all.T
View file @
ddb2a3d6
...
...
@@ -10,10 +10,16 @@ test('conc003', normal, compile_and_run, [''])
test
('
conc006
',
normal
,
compile_and_run
,
[''])
test
('
conc027
',
normal
,
compile_and_run
,
[''])
test
('
conc051
',
normal
,
compile_and_run
,
[''])
test
('
conc069
',
only_ways
(['
ghci
','
threaded1
','
threaded2
']),
compile_and_run
,
[''])
if
('
threaded1
'
in
config
.
run_ways
):
threaded_ways
=
['
ghci
','
threaded1
','
threaded2
']
else
:
threaded_ways
=
[]
test
('
conc069
',
only_ways
(
threaded_ways
),
compile_and_run
,
[''])
# this test gives slightly different results for non-threaded ways, so omit
# those for now.
test
('
conc070
',
only_ways
(
['
ghci
','
threaded1
','
threaded2
']
),
compile_and_run
,
[''])
test
('
conc070
',
only_ways
(
threaded_ways
),
compile_and_run
,
[''])
# -----------------------------------------------------------------------------
# These tests we only do for a full run
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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