aboutsummaryrefslogtreecommitdiff
path: root/libcxxabi/test/cxa_call_terminate.pass.cpp
blob: d0c5d13197ff0ffc11c33f93d85c2d64dba295fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

// UNSUPPORTED: no-exceptions

// We're testing the diagnosed behaviour here.
// ADDITIONAL_COMPILE_FLAGS: -Wno-exceptions

#include <cassert>
#include <cstdlib>
#include <exception>

#include "test_macros.h"

void func() TEST_NOEXCEPT {
  try {
    throw 1;
  } catch (float) {
  }
}

void terminate_handler() {
  assert(std::current_exception() != nullptr);
  std::exit(0);
}

int main(int, char**) {
  std::set_terminate(terminate_handler);
  func();
  assert(false);
}