From bd2631b375f8c2e1d9f6c778065d0ef699cf853a 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