]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/30_threads/future/members/get2.cc
Simplify dg-options for tests using pthreads
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 30_threads / future / members / get2.cc
CommitLineData
37d13ae6 1// { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-gnu* *-*-solaris* *-*-cygwin *-*-rtems* *-*-darwin* powerpc-ibm-aix* } }
71c54f8e
JW
2// { dg-options "-pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-gnu* *-*-solaris* powerpc-ibm-aix* } }
3// { dg-require-effective-target c++11 }
c910ceff
JW
4// { dg-require-cstdint "" }
5// { dg-require-gthreads "" }
6// { dg-require-atomic-builtins "" }
7
818ab71a 8// Copyright (C) 2009-2016 Free Software Foundation, Inc.
c910ceff
JW
9//
10// This file is part of the GNU ISO C++ Library. This library is free
11// software; you can redistribute it and/or modify it under the
12// terms of the GNU General Public License as published by the
13// Free Software Foundation; either version 3, or (at your option)
14// any later version.
15
16// This library is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20
21// You should have received a copy of the GNU General Public License along
22// with this library; see the file COPYING3. If not see
23// <http://www.gnu.org/licenses/>.
24
25
26#include <future>
27#include <exception>
28#include <testsuite_hooks.h>
29
30int value = 99;
31
32void test01()
33{
34 bool test __attribute__((unused)) = true;
35
36 std::promise<int> p1;
b3eed6fe 37 std::future<int> f1(p1.get_future());
c910ceff 38
ec98d010 39 p1.set_exception(std::make_exception_ptr(value));
c910ceff
JW
40 try
41 {
42 (void) f1.get();
43 VERIFY( false );
44 }
45 catch (int& e)
46 {
47 VERIFY( e == value );
48 }
b3eed6fe 49 VERIFY( !f1.valid() );
c910ceff
JW
50}
51
52void test02()
53{
54 bool test __attribute__((unused)) = true;
55
56 std::promise<int&> p1;
b3eed6fe 57 std::future<int&> f1(p1.get_future());
c910ceff 58
ec98d010 59 p1.set_exception(std::make_exception_ptr(value));
c910ceff
JW
60 try
61 {
62 (void) f1.get();
63 VERIFY( false );
64 }
65 catch (int& e)
66 {
67 VERIFY( e == value );
68 }
b3eed6fe 69 VERIFY( !f1.valid() );
c910ceff
JW
70}
71
72void test03()
73{
74 bool test __attribute__((unused)) = true;
75
76 std::promise<void> p1;
b3eed6fe 77 std::future<void> f1(p1.get_future());
c910ceff 78
ec98d010 79 p1.set_exception(std::make_exception_ptr(value));
c910ceff
JW
80 try
81 {
82 f1.get();
83 VERIFY( false );
84 }
85 catch (int& e)
86 {
87 VERIFY( e == value );
88 }
b3eed6fe 89 VERIFY( !f1.valid() );
c910ceff
JW
90}
91
92int main()
93{
94 test01();
95 test02();
96 test03();
97
98 return 0;
99}