From c325fa770566c6d6b3111cbaf5fa4b52a8c2e46b Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Wed, 1 Feb 2012 21:01:52 +0000 Subject: Add some tests to test catching nullptr with pointers and member pointers. Tests are only activated if #if __has_feature(cxx_nullptr). llvm-svn: 149536 --- libcxxabi/test/catch_pointer_nullptr.cpp | 64 ++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 libcxxabi/test/catch_pointer_nullptr.cpp (limited to 'libcxxabi/test/catch_pointer_nullptr.cpp') diff --git a/libcxxabi/test/catch_pointer_nullptr.cpp b/libcxxabi/test/catch_pointer_nullptr.cpp new file mode 100644 index 00000000000..dae6e6aa781 --- /dev/null +++ b/libcxxabi/test/catch_pointer_nullptr.cpp @@ -0,0 +1,64 @@ +//===--------------------- catch_pointer_nullptr.cpp ----------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include + +#if __has_feature(cxx_nullptr) + +void test1() +{ + try + { + throw nullptr; + assert(false); + } + catch (int*) + { + } + catch (long*) + { + assert(false); + } +} + +struct A {}; + +void test2() +{ + try + { + throw nullptr; + assert(false); + } + catch (A*) + { + } + catch (int*) + { + assert(false); + } +} + +#else + +void test1() +{ +} + +void test2() +{ +} + +#endif + +int main() +{ + test1(); + test2(); +} -- cgit v1.2.3