minix/external/bsd/libc++/dist/libcxx/test/diagnostics/std.exceptions/logic.error/logic_error.pass.cpp
Lionel Sambuc 4684ddb6aa LLVM Minix changes
- import libcxx
 - reduce targets to the one when compiled as a tools

Change-Id: Iabb8427f80ff8e89463559a28bcb8b4f2bdbc496
2014-07-28 17:05:59 +02:00

42 lines
1.2 KiB
C++

//===----------------------------------------------------------------------===//
//
// 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 logic_error
#include <stdexcept>
#include <type_traits>
#include <cstring>
#include <string>
#include <cassert>
int main()
{
static_assert((std::is_base_of<std::exception, std::logic_error>::value),
"std::is_base_of<std::exception, std::logic_error>::value");
static_assert(std::is_polymorphic<std::logic_error>::value,
"std::is_polymorphic<std::logic_error>::value");
{
const char* msg = "logic_error message";
std::logic_error e(msg);
assert(std::strcmp(e.what(), msg) == 0);
std::logic_error e2(e);
assert(std::strcmp(e2.what(), msg) == 0);
e2 = e;
assert(std::strcmp(e2.what(), msg) == 0);
}
{
std::string msg("another logic_error message");
std::logic_error e(msg);
assert(e.what() == msg);
std::logic_error e2(e);
assert(e2.what() == msg);
e2 = e;
assert(e2.what() == msg);
}
}