]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/30_threads/thread/cons/5.cc
Simplify dg-options for tests using pthreads
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 30_threads / thread / cons / 5.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 }
8b6ded8d
JW
4// { dg-require-cstdint "" }
5// { dg-require-gthreads "" }
6
818ab71a 7// Copyright (C) 2009-2016 Free Software Foundation, Inc.
8b6ded8d
JW
8//
9// This file is part of the GNU ISO C++ Library. This library is free
10// software; you can redistribute it and/or modify it under the
11// terms of the GNU General Public License as published by the
748086b7 12// Free Software Foundation; either version 3, or (at your option)
8b6ded8d
JW
13// any later version.
14
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19
20// You should have received a copy of the GNU General Public License along
748086b7
JJ
21// with this library; see the file COPYING3. If not see
22// <http://www.gnu.org/licenses/>.
8b6ded8d 23
8b6ded8d 24
d5cf2021 25#include <functional> // std::unary_function, std::ref
8b6ded8d
JW
26#include <thread>
27#include <system_error>
28#include <testsuite_hooks.h>
29
30struct nonconst : public std::unary_function<std::thread::id&, void>
31{
32 void operator()(std::thread::id& id)
33 {
34 id = std::this_thread::get_id();
35 }
36};
37
38void test01()
39{
40 bool test __attribute__((unused)) = true;
41
42 try
43 {
44 std::thread::id t1_id1;
45 nonconst c1;
46 std::thread t1(std::ref(c1), std::ref(t1_id1));
47 std::thread::id t1_id2 = t1.get_id();
48 VERIFY( t1.joinable() );
49 t1.join();
50 VERIFY( !t1.joinable() );
51 VERIFY( t1_id1 == t1_id2 );
52
53 std::thread::id t2_id1;
54 nonconst c2;
55 std::thread t2(c2, std::ref(t2_id1));
56 std::thread::id t2_id2 = t2.get_id();
57 VERIFY( t2.joinable() );
58 t2.join();
59 VERIFY( !t2.joinable() );
60 VERIFY( t2_id1 == t2_id2 );
61 }
62 catch (const std::system_error&)
63 {
64 VERIFY( false );
65 }
66 catch (...)
67 {
68 VERIFY( false );
69 }
70}
71
72int main()
73{
74 test01();
75 return 0;
76}