diff options
| author | Marshall Clow <mclow@qualcomm.com> | 2012-02-01 21:49:28 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow@qualcomm.com> | 2012-02-01 21:49:28 +0000 |
| commit | e71ddf2fcb1e46814869f8ac83a080c73f87137b (patch) | |
| tree | de308bf7e5bc7f04f5485e38b5caf1a19cc35bf9 | |
| parent | 25a11e6dbda6544f64c7ccde49a5e70237d2a4cd (diff) | |
| download | bcm5719-llvm-e71ddf2fcb1e46814869f8ac83a080c73f87137b.tar.gz bcm5719-llvm-e71ddf2fcb1e46814869f8ac83a080c73f87137b.zip | |
removed duplicated tests - Howard was quicker than me.
llvm-svn: 149545
| -rw-r--r-- | libcxxabi/test/catch_const_pointer_nullptr.cpp | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/libcxxabi/test/catch_const_pointer_nullptr.cpp b/libcxxabi/test/catch_const_pointer_nullptr.cpp deleted file mode 100644 index 0e9b8b0a0ef..00000000000 --- a/libcxxabi/test/catch_const_pointer_nullptr.cpp +++ /dev/null @@ -1,64 +0,0 @@ -//===--------------------- 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) - -struct A {}; - -void test1() -{ - try - { - throw nullptr; - assert(false); - } - catch (const A*) - { - } - catch (A*) - { - assert(false); - } -} - -void test2() -{ - try - { - throw nullptr; - assert(false); - } - catch (A*) - { - } - catch (const A*) - { - assert(false); - } -} - -#else - -void test1() -{ -} - -void test2() -{ -} - -#endif - -int main() -{ - test1(); - test2(); -} |

