//===----------------------------------------------------------------------===// // // 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(const R& r); #define BOOST_THREAD_VERSION 3 #include #include #include #ifdef BOOST_MSVC # pragma warning(disable: 4702) // unreachable code #endif struct A { A() { } A(const A&) { throw 10; } }; int main() { { typedef int T; T i = 3; boost::promise p; boost::future f = p.get_future(); p.set_value(i); ++i; BOOST_TEST(f.get() == 3); --i; try { p.set_value(i); 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 int T; T i = 3; boost::promise p; boost::future f = p.get_future(); p.set_value_deferred(i); p.notify_deferred(); ++i; BOOST_TEST(f.get() == 3); --i; try { p.set_value(i); 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 A T; T i; boost::promise p; boost::future f = p.get_future(); try { p.set_value(i); BOOST_TEST(false); } catch (int j) { BOOST_TEST(j == 10); } catch (...) { BOOST_TEST(false); } } return boost::report_errors(); }