diff options
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/rts/all.T | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 7100aaf3d7..848314928a 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -76,7 +76,14 @@ test('divbyzero', when(opsys('mingw32'), omit_ways(prof_ways))], compile_and_run, ['-with-rtsopts="--generate-stack-traces=no"']) -test('outofmem', when(opsys('darwin'), skip), +test('outofmem', [ when(opsys('darwin'), skip), + # this is believed to cause other processes to die + # that happen concurrently while the outofmem test + # runs in CI. As such we'll need to disable it on + # windows, to prevent absolute exhaustion of memory + # and subsequent termination (and failure) of unrelated + # tests. + when(opsys('mingw32'), skip) ], makefile_test, ['outofmem']) test('outofmem2', normal, makefile_test, ['outofmem2']) |