diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-11-07 06:03:20 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-11-09 18:03:37 -0500 |
commit | 925fbdbb184aa587a5a6ee61162ab6dff5131559 (patch) | |
tree | eb5c37530779d9340dcc19ec92554d83c45e1dcc | |
parent | 0fb246c3ec799eb18b9cbf267f24283d1dc88ca8 (diff) | |
download | haskell-925fbdbb184aa587a5a6ee61162ab6dff5131559.tar.gz |
testsuite: Skip T16916 on Windows
The event manager is not supported on Windows.
-rw-r--r-- | testsuite/tests/lib/base/all.T | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/tests/lib/base/all.T b/testsuite/tests/lib/base/all.T index 8a97c0f907..e368dcad60 100644 --- a/testsuite/tests/lib/base/all.T +++ b/testsuite/tests/lib/base/all.T @@ -1,2 +1,3 @@ test('T16586', normal, compile_and_run, ['-O2']) -test('T16916', normal, compile_and_run, ['-O2 -threaded']) +# Event-manager not supported on Windows +test('T16916', when(opsys('mingw32'), skip), compile_and_run, ['-O2 -threaded']) |