Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 30_threads / future / members / 45133.cc
blob17819b8aee3eb6694b3105d4cceaf937a2ee5ee3
1 // { dg-do run { target *-*-freebsd* *-*-netbsd* *-*-linux* *-*-gnu* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
2 // { dg-options " -std=gnu++0x -pthread" { target *-*-freebsd* *-*-netbsd* *-*-linux* *-*-gnu* powerpc-ibm-aix* } }
3 // { dg-options " -std=gnu++0x -pthreads" { target *-*-solaris* } }
4 // { dg-options " -std=gnu++0x " { target *-*-cygwin *-*-darwin* } }
5 // { dg-require-cstdint "" }
6 // { dg-require-gthreads "" }
7 // { dg-require-atomic-builtins "" }
9 // Copyright (C) 2010-2013 Free Software Foundation, Inc.
11 // This file is part of the GNU ISO C++ Library. This library is free
12 // software; you can redistribute it and/or modify it under the
13 // terms of the GNU General Public License as published by the
14 // Free Software Foundation; either version 3, or (at your option)
15 // any later version.
17 // This library is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
22 // You should have received a copy of the GNU General Public License along
23 // with this library; see the file COPYING3. If not see
24 // <http://www.gnu.org/licenses/>.
26 // 30.6.6 Class template future [futures.unique_future]
28 #include <future>
29 #include <testsuite_hooks.h>
31 // This test verifies behaviour which is encouraged by a non-normative note,
32 // but not required.
34 void
35 test01()
37 bool test __attribute__((unused)) = true;
39 std::promise<int> p;
40 std::future<int> f = p.get_future();
41 p.set_value(0);
42 f.get();
43 try
45 f.get();
46 VERIFY( false );
48 catch (std::future_error& e)
50 VERIFY( e.code() == std::future_errc::no_state );
54 void
55 test02()
57 bool test __attribute__((unused)) = true;
59 std::promise<int&> p;
60 std::future<int&> f = p.get_future();
61 int i = 0;
62 p.set_value(i);
63 f.get();
64 try
66 f.get();
67 VERIFY( false );
69 catch (std::future_error& e)
71 VERIFY( e.code() == std::future_errc::no_state );
75 void
76 test03()
78 bool test __attribute__((unused)) = true;
80 std::promise<void> p;
81 std::future<void> f = p.get_future();
82 p.set_value();
83 f.get();
84 try
86 f.get();
87 VERIFY( false );
89 catch (std::future_error& e)
91 VERIFY( e.code() == std::future_errc::no_state );
95 int main()
97 test01();
98 test02();
99 test03();
101 return 0;