Index: test/backtrace_test.pass.cpp =================================================================== --- test/backtrace_test.pass.cpp +++ test/backtrace_test.pass.cpp @@ -60,6 +60,6 @@ // Different platforms (and different runtimes) will unwind a different number // of times, so we can't make any better assumptions than this. assert(nothrow_ntraced > 1); - assert(throw_ntraced == nothrow_ntraced); // Make sure we unwind through catch + assert(throw_ntraced >= nothrow_ntraced); // Make sure we unwind through catch return 0; }