
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC Commits: 54be78ef by Ben Gamari at 2025-08-19T16:28:05-04:00 testsuite: Fix T20006b This test is supposed to fail for non-threaded ways yet it was previously marked as only failing in `normal`. Fix this. - - - - - 1 changed file: - testsuite/tests/rts/flags/all.T Changes: ===================================== testsuite/tests/rts/flags/all.T ===================================== @@ -59,12 +59,12 @@ test('T12870h', test('T20006a', [extra_files(['T20006.hs']), extra_run_opts('+RTS --eventlog-flush-interval=1'), - only_ways(['threaded1', 'threaded2'])], + only_ways(threaded_ways)], multimod_compile_and_run, ['T20006', '']) test('T20006b', [extra_files(['T20006.hs']), extra_run_opts('+RTS --eventlog-flush-interval=1'), - expect_fail_for(['normal'])], + expect_fail_for([way for way in all_ways if way not in threaded_ways])], multimod_compile_and_run, ['T20006', '']) View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/54be78efd0ade5c1c834c9e7df608556... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/54be78efd0ade5c1c834c9e7df608556... You're receiving this email because of your account on gitlab.haskell.org.