diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2021-03-16 10:00:09 +0800 |
---|---|---|
committer | Moritz Angermann <moritz.angermann@gmail.com> | 2021-03-16 10:04:23 +0800 |
commit | b5b51c54a7d6539caa4c3dcb7be52072b4a10775 (patch) | |
tree | d3dc17e8a28451810d84fb60cdbf52898b5dfdeb /testsuite/tests/rts | |
parent | 545cfefaa88b31daa2cb3519b7561171e7ca51b3 (diff) | |
download | haskell-b5b51c54a7d6539caa4c3dcb7be52072b4a10775.tar.gz |
[ci] Skip test's on windows that often fail in CI.wip/angerman/stable-windows
Diffstat (limited to 'testsuite/tests/rts')
-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']) |