//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // Copyright (C) 2011 Vicente J. Botet Escriba // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // class promise // void promise::set_value(); #define BOOST_THREAD_VERSION 3 #include #include #include struct A { A() { } A(const A&) { throw 10; } }; int main() { { typedef void T; boost::promise p; boost::future f = p.get_future(); p.set_value(); f.get(); try { p.set_value(); BOOST_TEST(false); } catch (const boost::future_error& e) { BOOST_TEST(e.code() == boost::system::make_error_code(boost::future_errc::promise_already_satisfied)); } catch (...) { BOOST_TEST(false); } } { typedef void T; boost::promise p; boost::future f = p.get_future(); p.set_value_deferred(); p.notify_deferred(); f.get(); try { p.set_value(); BOOST_TEST(false); } catch (const boost::future_error& e) { BOOST_TEST(e.code() == boost::system::make_error_code(boost::future_errc::promise_already_satisfied)); } catch (...) { BOOST_TEST(false); } } return boost::report_errors(); }