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 /libraries/base/tests | |
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 'libraries/base/tests')
-rw-r--r-- | libraries/base/tests/all.T | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/base/tests/all.T b/libraries/base/tests/all.T index da828cb2c2..b02d77ef11 100644 --- a/libraries/base/tests/all.T +++ b/libraries/base/tests/all.T @@ -175,7 +175,8 @@ test('CatPairs', normal, compile, ['']) test('CatEntail', normal, compile, ['']) # When running with WAY=ghci and profiled ways, T7653 uses a lot of memory. -test('T7653', omit_ways(prof_ways+['ghci']), compile_and_run, ['']) +test('T7653', [when(opsys('mingw32'), skip), + omit_ways(prof_ways+['ghci'])], compile_and_run, ['']) test('T7787', normal, compile_and_run, ['']) test('topHandler01', when(opsys('mingw32'), skip), compile_and_run, ['']) |