diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-04-28 15:46:43 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-06-01 22:27:10 -0400 |
commit | 468f919b1bd27d8a58a789a6bb1be4295097388c (patch) | |
tree | 20259b0d37ee2ec7a588207561089bf346fda8ed /testsuite | |
parent | 5433a35e28e2487827b88f2396865c29ecee0833 (diff) | |
download | haskell-468f919b1bd27d8a58a789a6bb1be4295097388c.tar.gz |
Make -fcompact-unwind the default
This is a follow-up to !7247 (closed) making the inclusion of compact unwinding
sections the default.
Also a slight refactoring/simplification of the flag handling to add
-fno-compact-unwind.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/rts/all.T | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index d907ceff62..0c541dd480 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -473,9 +473,8 @@ test('keep-cafs', # Test proper functioning of C++ exceptions within a C++ program. # On darwin, this requires -fcompact-unwind. -# When -fcompact-unwind becomes default, generalize test to all platforms. -test('T11829', unless(opsys('darwin'), skip), compile_and_run, - ['T11829_c.cpp -l{} -fcompact-unwind'.format(config.stdcxx_impl)]) +test('T11829', [ check_errmsg("This is a test") ], compile_and_run, + ['T11829_c.cpp -l{}'.format(config.stdcxx_impl)]) test('T16514', normal, compile_and_run, ['T16514_c.c']) test('test-zeroongc', extra_run_opts('-DZ'), compile_and_run, ['-debug']) |