blob: 49a41362db9a5f00f83fc77fdad34a8da86419be [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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: windows
// UNSUPPORTED: libcpp-has-no-threads
// UNSUPPORTED: c++98, c++03
// MODULES_DEFINES: _LIBCPP_DEBUG=0
// Can't test the system lib because this test enables debug mode
// UNSUPPORTED: with_system_cxx_lib
// <future>
// class promise<R>
// void set_exception_on_thread_exit(exception_ptr p);
// Test that a null exception_ptr is diagnosed.
#define _LIBCPP_DEBUG 0
#include <future>
#include <exception>
#include <cstdlib>
#include <cassert>
#include "test_macros.h"
#include "debug_mode_helper.h"
int main(int, char**)
{
{
typedef int T;
std::promise<T> p;
EXPECT_DEATH( p.set_exception_at_thread_exit(std::exception_ptr()) );
}
{
typedef int& T;
std::promise<T> p;
EXPECT_DEATH( p.set_exception_at_thread_exit(std::exception_ptr()) );
}
return 0;
}