[Git][ghc/ghc][master] testsuite: fix testsuite run for +ipe again
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC Commits: da7e82f4 by Cheng Shao at 2026-04-08T20:54:49-04:00 testsuite: fix testsuite run for +ipe again This patch makes the +ipe flavour transformer pass the entire testsuite again by dropping stdout/stderr checks of certain tests that are sensitive to stack layout changes with `+ipe`. Related: #26799. - - - - - 2 changed files: - libraries/ghc-experimental/tests/backtraces/all.T - libraries/ghc-internal/tests/stack-annotation/all.T Changes: ===================================== libraries/ghc-experimental/tests/backtraces/all.T ===================================== @@ -1,4 +1,4 @@ -stack_annotation_backtrace_opts = [ when(have_profiling(), extra_ways(['prof'])) , when(js_arch(), skip) , exit_code(1) ] +stack_annotation_backtrace_opts = [ when(have_profiling(), extra_ways(['prof'])), when(ghc_with_ipe(), ignore_stderr), when(js_arch(), skip) , exit_code(1) ] test('T26806a', stack_annotation_backtrace_opts, compile_and_run, ['']) test('T26806b', stack_annotation_backtrace_opts, compile_and_run, ['']) ===================================== libraries/ghc-internal/tests/stack-annotation/all.T ===================================== @@ -2,6 +2,7 @@ # and test with profiling way if available (#26507) ann_frame_opts = [ when(js_arch(), skip) , when(have_profiling(), extra_ways(['prof'])) + , when(ghc_with_ipe(), ignore_stdout) , extra_files(['TestUtils.hs'])] test('ann_frame001', ann_frame_opts, compile_and_run, ['']) View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/da7e82f466807f86f083b4d1fa4d7a2d... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/da7e82f466807f86f083b4d1fa4d7a2d... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Marge Bot (@marge-bot)