From 280c49af4fb0c16dea2bbbf4f6b67a9a39d7da67 Mon Sep 17 00:00:00 2001 From: Cheng Shao <terrorjack@type.dance> Date: Fri, 18 Oct 2024 23:00:52 +0000 Subject: [PATCH] testsuite: workaround mysterious framework error --- testsuite/tests/rts/all.T | 4 ---- testsuite/tests/rts/ipe/all.T | 5 ++++- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 35f97e5f77c..4acaa4c43d4 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -216,10 +216,6 @@ test('EventlogOutput_IPE', ], makefile_test, ['EventlogOutput_IPE']) -# Remove the capability prefix from IPE event log lines. -def noCapabilityOutputFilter(s): - return re.sub(r'[a-f0-9]+: IPE:', 'IPE:', s) - test('T4059', req_c, makefile_test, ['T4059']) # Test for #4274 diff --git a/testsuite/tests/rts/ipe/all.T b/testsuite/tests/rts/ipe/all.T index acb7e1f3b90..b0d680beed2 100644 --- a/testsuite/tests/rts/ipe/all.T +++ b/testsuite/tests/rts/ipe/all.T @@ -1,3 +1,7 @@ +# Remove the capability prefix from IPE event log lines. +def noCapabilityOutputFilter(s): + return re.sub(r'[a-f0-9]+: IPE:', 'IPE:', s) + test('ipeMap', [extra_files(['ipe_lib.c', 'ipe_lib.h']), c_src, omit_ghci], compile_and_run, ['ipe_lib.c']) # Manually create IPE entries and dump them to event log (stderr). @@ -30,4 +34,3 @@ test('ipeEventLog_fromMap', when(opsys('darwin'), fragile(0)) ], compile_and_run, ['ipe_lib.c']) - -- GitLab