From 925fbdbb184aa587a5a6ee61162ab6dff5131559 Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Thu, 7 Nov 2019 06:03:20 -0500 Subject: [PATCH] testsuite: Skip T16916 on Windows The event manager is not supported on Windows. --- testsuite/tests/lib/base/all.T | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testsuite/tests/lib/base/all.T b/testsuite/tests/lib/base/all.T index 8a97c0f90728..e368dcad604a 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']) -- GitLab