Skip to content
Snippets Groups Projects
Commit 1417e133 authored by Cheng Shao's avatar Cheng Shao
Browse files

testsuite: fix InternalCounters test with +debug_ghc

The `InternalCounters` test case fails when ghc is built with
`+debug_ghc`. This patch skips it in that case and allows the
testsuite to pass for the `+debug_ghc` flavour transformer.

(cherry picked from commit 59b9307b)
parent 2ef5caea
No related branches found
No related tags found
No related merge requests found
...@@ -469,6 +469,8 @@ test('InternalCounters', ...@@ -469,6 +469,8 @@ test('InternalCounters',
# The ways which build against the debug RTS are built with PROF_SPIN and # The ways which build against the debug RTS are built with PROF_SPIN and
# therefore differ in output # therefore differ in output
, omit_ways(['nonmoving_thr_sanity', 'threaded2_sanity', 'sanity']) , omit_ways(['nonmoving_thr_sanity', 'threaded2_sanity', 'sanity'])
# Likewise when ghc is linked with debug RTS using +debug_ghc
, when(debug_rts(), skip)
], makefile_test, ['InternalCounters']) ], makefile_test, ['InternalCounters'])
test('alloccounter1', js_broken(22261), compile_and_run, test('alloccounter1', js_broken(22261), compile_and_run,
[ [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment