Fix embarrasing typo in uncaught_exceptions. Update tests to really test this. Thanks to Peter Klotz for calling my attention to this.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@333467 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2018-05-29 22:25:42 +00:00
parent ab343bb5ae
commit 1e6ac5e8f4
2 changed files with 30 additions and 22 deletions

View File

@@ -18,7 +18,7 @@ bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
int uncaught_exceptions() _NOEXCEPT int uncaught_exceptions() _NOEXCEPT
{ {
# if _LIBCPPABI_VERSION > 1101 # if _LIBCPPABI_VERSION > 1001
return __cxa_uncaught_exceptions(); return __cxa_uncaught_exceptions();
# else # else
return __cxa_uncaught_exception() ? 1 : 0; return __cxa_uncaught_exception() ? 1 : 0;

View File

@@ -15,40 +15,48 @@
// XFAIL: availability=macosx10.9 // XFAIL: availability=macosx10.9
// XFAIL: availability=macosx10.10 // XFAIL: availability=macosx10.10
// XFAIL: availability=macosx10.11 // XFAIL: availability=macosx10.11
// XFAIL: with_system_cxx_lib=macosx10.12
// XFAIL: with_system_cxx_lib=macosx10.13
// test uncaught_exceptions // test uncaught_exceptions
#include <exception> #include <exception>
#include <cassert> #include <cassert>
struct A struct Uncaught {
{ Uncaught(int depth) : d_(depth) {}
~A() ~Uncaught() { assert(std::uncaught_exceptions() == d_); }
{ int d_;
assert(std::uncaught_exceptions() > 0);
}
}; };
struct B struct Outer {
{ Outer(int depth) : d_(depth) {}
B() ~Outer() {
{ try {
// http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#475 assert(std::uncaught_exceptions() == d_);
assert(std::uncaught_exceptions() == 0); Uncaught u(d_+1);
throw 2;
} }
catch (int) {}
}
int d_;
}; };
int main() int main () {
{
try
{
A a;
assert(std::uncaught_exceptions() == 0); assert(std::uncaught_exceptions() == 0);
throw B();
}
catch (...)
{ {
assert(std::uncaught_exception() == 0); Outer o(0);
}
assert(std::uncaught_exceptions() == 0);
{
try {
Outer o(1);
throw 1;
}
catch (int) {
assert(std::uncaught_exceptions() == 0);
}
} }
assert(std::uncaught_exceptions() == 0); assert(std::uncaught_exceptions() == 0);
} }