Skip to content
Snippets Groups Projects
Unverified Commit 30cfb72c authored by Ben Gamari's avatar Ben Gamari :turtle: Committed by GitHub
Browse files

Merge pull request #136 from haskell/wip/testsuite

Testsuite changes for GHC 8.10
parents bd2631b3 e8603ca5
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,11 @@ test('signals002', [], compile_and_run, ['-package unix']) ...@@ -4,7 +4,11 @@ test('signals002', [], compile_and_run, ['-package unix'])
test('fileexist01', normal, compile_and_run, ['-package unix']) test('fileexist01', normal, compile_and_run, ['-package unix'])
# test #4512 # test #4512
test('forkprocess01', extra_ways(['threaded1_ls']), compile_and_run, test('forkprocess01',
[extra_ways(['threaded1_ls']),
# the forked process breaks the .hp file
omit_ways(prof_ways)],
compile_and_run,
['-package unix']) ['-package unix'])
# #
...@@ -69,6 +73,6 @@ test('T3816', normal, compile_and_run, ['-package unix']) ...@@ -69,6 +73,6 @@ test('T3816', normal, compile_and_run, ['-package unix'])
test('processGroup001', normal, compile_and_run, ['-package unix']) test('processGroup001', normal, compile_and_run, ['-package unix'])
test('processGroup002', normal, compile_and_run, ['-package unix']) test('processGroup002', normal, compile_and_run, ['-package unix'])
test('executeFile001', omit_ways(prof_ways + ['threaded2']), compile_and_run, ['-package unix']) test('executeFile001', omit_ways(prof_ways + concurrent_ways), compile_and_run, ['-package unix'])
test('T8108', normal, compile_and_run, ['-package unix']) test('T8108', normal, compile_and_run, ['-package unix'])
...@@ -13,4 +13,5 @@ test('posix006', reqlib('unix'), compile_and_run, ['']) ...@@ -13,4 +13,5 @@ test('posix006', reqlib('unix'), compile_and_run, [''])
test('posix009', [ omit_ways(threaded_ways), reqlib('unix') ], compile_and_run, ['']) test('posix009', [ omit_ways(threaded_ways), reqlib('unix') ], compile_and_run, [''])
test('posix010', reqlib('unix'), compile_and_run, ['']) test('posix010', reqlib('unix'), compile_and_run, [''])
test('posix014', [ reqlib('unix') ], compile_and_run, ['']) test('posix014', [ reqlib('unix'), omit_ways(prof_ways) ],
compile_and_run, [''])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment