mirror of
https://github.com/catchorg/Catch2.git
synced 2026-07-06 08:30:47 +02:00
42fe78d0ba
Closes #1210 When a signal is caught, the destructors of Sections will not be called. Thus, we must call `sectionEndedEarly` manually for those Sections. Example test case: ``` TEST_CASE("broken") { SECTION("section") { /// Use illegal cpu instruction __asm__ __volatile__("ud2" : : : "memory"); } } ```