From 6819b70a7739205a75f0b4fefcfcc9fdab39cab9 Mon Sep 17 00:00:00 2001 From: Zubin Duggal <zubin.duggal@gmail.com> Date: Thu, 21 Sep 2023 15:26:10 +0530 Subject: [PATCH] testsuite: Mark linker_unload_native as fragile See #23993. This test is fragile on Alpine (dynamic) but we don't have a way to mark it as fragile on only that platform, so marking it as fragile on all platforms. --- testsuite/tests/rts/linker/all.T | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testsuite/tests/rts/linker/all.T b/testsuite/tests/rts/linker/all.T index 11b2c41020ca..17d744f3ca28 100644 --- a/testsuite/tests/rts/linker/all.T +++ b/testsuite/tests/rts/linker/all.T @@ -105,7 +105,8 @@ test('linker_unload_native', [extra_files(['LinkerUnload.hs', 'Test.hs']), req_rts_linker, unless(have_dynamic(), skip), - when(opsys('darwin') or opsys('mingw32'), skip)], + when(opsys('darwin') or opsys('mingw32'), skip), + fragile(23993)], makefile_test, ['linker_unload_native']) ###################################### -- GitLab