2016-05-31 20:01:32 +08:00
|
|
|
//===----------------------- cxa_bad_cast.pass.cpp ------------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-05-31 20:01:32 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-06-01 22:38:23 +08:00
|
|
|
// UNSUPPORTED: c++03
|
2016-05-31 20:01:32 +08:00
|
|
|
|
|
|
|
#include <cxxabi.h>
|
|
|
|
#include <cassert>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <exception>
|
|
|
|
#include <typeinfo>
|
|
|
|
|
2020-06-10 03:47:37 +08:00
|
|
|
#include "test_macros.h"
|
|
|
|
|
2016-05-31 20:01:32 +08:00
|
|
|
class Base {
|
|
|
|
virtual void foo() {};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Derived : public Base {};
|
|
|
|
|
2018-07-25 19:19:13 +08:00
|
|
|
Derived &test_bad_cast(Base& b) {
|
2016-05-31 20:01:32 +08:00
|
|
|
return dynamic_cast<Derived&>(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
Base gB;
|
|
|
|
|
|
|
|
void my_terminate() { exit(0); }
|
|
|
|
|
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
// swap-out the terminate handler
|
2020-06-01 22:38:23 +08:00
|
|
|
void (*default_handler)() = std::get_terminate();
|
2016-05-31 20:01:32 +08:00
|
|
|
std::set_terminate(my_terminate);
|
|
|
|
|
2020-06-10 03:47:37 +08:00
|
|
|
#ifndef TEST_HAS_NO_EXCEPTIONS
|
2016-05-31 20:01:32 +08:00
|
|
|
try {
|
|
|
|
#endif
|
|
|
|
Derived &d = test_bad_cast(gB);
|
|
|
|
assert(false);
|
2016-12-24 08:37:13 +08:00
|
|
|
((void)d);
|
2020-06-10 03:47:37 +08:00
|
|
|
#ifndef TEST_HAS_NO_EXCEPTIONS
|
2020-10-31 05:33:02 +08:00
|
|
|
} catch (std::bad_cast const&) {
|
2016-05-31 20:01:32 +08:00
|
|
|
// success
|
|
|
|
return 0;
|
|
|
|
} catch (...) {
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// failure, restore the default terminate handler and fire
|
|
|
|
std::set_terminate(default_handler);
|
|
|
|
std::terminate();
|
|
|
|
}
|