From ba8a23d42733830336b384e7dfdb511b8e7c7e7c Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Fri, 14 Jun 2019 16:03:12 -0400 Subject: [PATCH] Skip executeFile001 in threaded2 way As noted in ghc/ghc#16814, this test is remarkably fragile when run concurrently. --- tests/all.T | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/all.T b/tests/all.T index e2fcb88..e4d2f5b 100644 --- a/tests/all.T +++ b/tests/all.T @@ -69,6 +69,6 @@ test('T3816', normal, compile_and_run, ['-package unix']) test('processGroup001', normal, compile_and_run, ['-package unix']) test('processGroup002', normal, compile_and_run, ['-package unix']) -test('executeFile001', omit_ways(prof_ways), compile_and_run, ['-package unix']) +test('executeFile001', omit_ways(prof_ways + ['threaded2']), compile_and_run, ['-package unix']) test('T8108', normal, compile_and_run, ['-package unix']) -- GitLab