summaryrefslogtreecommitdiffstats
path: root/libcxx/test/language.support/support.exception/bad.exception
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2014-12-20 01:40:03 +0000
committerEric Fiselier <eric@efcs.ca>2014-12-20 01:40:03 +0000
commit5a83710e371fe68a06e6e3876c6a2c8b820a8976 (patch)
treeafde4c82ad6704681781c5cd49baa3fbd05c85db /libcxx/test/language.support/support.exception/bad.exception
parentf11e8eab527fba316c64112f6e05de1a79693a3e (diff)
downloadbcm5719-llvm-5a83710e371fe68a06e6e3876c6a2c8b820a8976.tar.gz
bcm5719-llvm-5a83710e371fe68a06e6e3876c6a2c8b820a8976.zip
Move test into test/std subdirectory.
llvm-svn: 224658
Diffstat (limited to 'libcxx/test/language.support/support.exception/bad.exception')
-rw-r--r--libcxx/test/language.support/support.exception/bad.exception/bad_exception.pass.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/libcxx/test/language.support/support.exception/bad.exception/bad_exception.pass.cpp b/libcxx/test/language.support/support.exception/bad.exception/bad_exception.pass.cpp
deleted file mode 100644
index 3baddaa898d..00000000000
--- a/libcxx/test/language.support/support.exception/bad.exception/bad_exception.pass.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// 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.
-//
-//===----------------------------------------------------------------------===//
-
-// test bad_exception
-
-#include <exception>
-#include <type_traits>
-#include <cassert>
-
-int main()
-{
- static_assert((std::is_base_of<std::exception, std::bad_exception>::value),
- "std::is_base_of<std::exception, std::bad_exception>::value");
- static_assert(std::is_polymorphic<std::bad_exception>::value,
- "std::is_polymorphic<std::bad_exception>::value");
- std::bad_exception b;
- std::bad_exception b2 = b;
- b2 = b;
- const char* w = b2.what();
- assert(w);
-}
OpenPOWER on IntegriCloud