diff options
| author | Howard Hinnant <hhinnant@apple.com> | 2012-02-01 21:01:52 +0000 |
|---|---|---|
| committer | Howard Hinnant <hhinnant@apple.com> | 2012-02-01 21:01:52 +0000 |
| commit | c325fa770566c6d6b3111cbaf5fa4b52a8c2e46b (patch) | |
| tree | 07a35a2f6a8ae5e0aed4e23afa53c4ef52768190 /libcxxabi/test/catch_pointer_nullptr.cpp | |
| parent | 2e15c844a53f767c399130db44bf14f23377da38 (diff) | |
| download | bcm5719-llvm-c325fa770566c6d6b3111cbaf5fa4b52a8c2e46b.tar.gz bcm5719-llvm-c325fa770566c6d6b3111cbaf5fa4b52a8c2e46b.zip | |
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
Diffstat (limited to 'libcxxabi/test/catch_pointer_nullptr.cpp')
| -rw-r--r-- | libcxxabi/test/catch_pointer_nullptr.cpp | 64 |
1 files changed, 64 insertions, 0 deletions
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 <cassert> + +#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(); +} |

