about summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/issue-69368
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-86/+0
2022-08-28Auto merge of #92845 - Amanieu:std_personality, r=Mark-Simulacrumbors-0/+5
Move EH personality functions to std These were previously in the panic_unwind crate with dummy stubs in the panic_abort crate. However it turns out that this is insufficient: we still need a proper personality function even with -C panic=abort to handle the following cases: 1) `extern "C-unwind"` still needs to catch foreign exceptions with -C panic=abort to turn them into aborts. This requires landing pads and a personality function. 2) ARM EHABI uses the personality function when creating backtraces. The dummy personality function in panic_abort was causing backtrace generation to get stuck in a loop since the personality function is responsible for advancing the unwind state to the next frame. Fixes #41004
2022-08-23Fix testAmanieu d'Antras-0/+5
2022-08-23Diagnose missing includes in run-make testsTomasz Miąsko-1/+1
2020-08-27Abort when catch_unwind catches a foreign exceptionAmanieu d'Antras-0/+5
2020-03-03Add regression test for linking issue with start-group / end-groupTomasz Miąsko-0/+76