summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/30_threads/future/members/get.cc
diff options
context:
space:
mode:
authorPaolo Carlini <paolo.carlini@oracle.com>2010-02-02 14:59:53 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2010-02-02 14:59:53 +0000
commit823268870fd6dba506c84cc5a55554236a498d9b (patch)
tree3f37a2c23eabdbab8c8c97cd7ea080ebdbaa80ea /libstdc++-v3/testsuite/30_threads/future/members/get.cc
parent096bfdb1123dc93ac64aeb5324f326c9e7731e88 (diff)
downloadgcc-823268870fd6dba506c84cc5a55554236a498d9b.tar.gz
unique_future: Rename to /future.
2010-02-01 Paolo Carlini <paolo.carlini@oracle.com> * testsuite/30_threads/unique_future: Rename to /future. From-SVN: r156451
Diffstat (limited to 'libstdc++-v3/testsuite/30_threads/future/members/get.cc')
-rw-r--r--libstdc++-v3/testsuite/30_threads/future/members/get.cc73
1 files changed, 73 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/30_threads/future/members/get.cc b/libstdc++-v3/testsuite/30_threads/future/members/get.cc
new file mode 100644
index 00000000000..a0e4a4326dc
--- /dev/null
+++ b/libstdc++-v3/testsuite/30_threads/future/members/get.cc
@@ -0,0 +1,73 @@
+// { dg-do run { target *-*-freebsd* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* alpha*-*-osf* mips-sgi-irix6* } }
+// { dg-options " -std=gnu++0x -pthread" { target *-*-freebsd* *-*-netbsd* *-*-linux* alpha*-*-osf* mips-sgi-irix6* } }
+// { dg-options " -std=gnu++0x -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++0x " { target *-*-cygwin *-*-darwin* } }
+// { dg-require-cstdint "" }
+// { dg-require-gthreads "" }
+// { dg-require-atomic-builtins "" }
+
+// Copyright (C) 2009 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3. If not see
+// <http://www.gnu.org/licenses/>.
+
+
+#include <future>
+#include <testsuite_hooks.h>
+
+int value = 99;
+
+void test01()
+{
+ bool test __attribute__((unused)) = true;
+
+ std::promise<int> p1;
+ std::future<int> f1(p1.get_future());
+
+ p1.set_value(value);
+ VERIFY( f1.get() == value );
+ VERIFY( !f1.valid() );
+}
+
+void test02()
+{
+ bool test __attribute__((unused)) = true;
+
+ std::promise<int&> p1;
+ std::future<int&> f1(p1.get_future());
+
+ p1.set_value(value);
+ VERIFY( &f1.get() == &value );
+ VERIFY( !f1.valid() );
+}
+
+void test03()
+{
+ std::promise<void> p1;
+ std::future<void> f1(p1.get_future());
+
+ p1.set_value();
+ f1.get();
+ VERIFY( !f1.valid() );
+}
+
+int main()
+{
+ test01();
+ test02();
+ test03();
+
+ return 0;
+}