diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-10-11 20:39:00 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-23 05:58:50 -0400 |
commit | 9b2a5008fbd903964fd3eadab2c5acc4b98e6162 (patch) | |
tree | 31b898cfe0b2770f7c04a38234de351cf39b8ebb | |
parent | a19c7d17d75e5006209ecd5ef76d267888882145 (diff) | |
download | haskell-9b2a5008fbd903964fd3eadab2c5acc4b98e6162.tar.gz |
testsuite: Don't run T7653 in ghci and profiled ways
Currently this routinely fails in the i386 job.
See #7653.
-rw-r--r-- | libraries/base/tests/all.T | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/tests/all.T b/libraries/base/tests/all.T index 0b45c9aff2..61367e4491 100644 --- a/libraries/base/tests/all.T +++ b/libraries/base/tests/all.T @@ -170,8 +170,8 @@ test('T7773', when(opsys('mingw32'), skip), compile_and_run, ['']) test('CatPairs', normal, compile, ['']) test('CatEntail', normal, compile, ['']) -# When running with WAY=ghci, T7653 uses a lot of memory. -test('T7653', high_memory_usage, compile_and_run, ['']) +# 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('T7787', normal, compile_and_run, ['']) test('topHandler01', when(opsys('mingw32'), skip), compile_and_run, ['']) |