forked from mirror/libcxx
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| //                     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.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // UNSUPPORTED: libcpp-no-exceptions
 | |
| // UNSUPPORTED: libcpp-has-no-threads
 | |
| // UNSUPPORTED: c++98, c++03
 | |
| 
 | |
| // <future>
 | |
| 
 | |
| // class future<R>
 | |
| 
 | |
| // ~future();
 | |
| 
 | |
| #include <future>
 | |
| #include <cassert>
 | |
| 
 | |
| #include "test_allocator.h"
 | |
| 
 | |
| int main()
 | |
| {
 | |
|     assert(test_alloc_base::alloc_count == 0);
 | |
|     {
 | |
|         typedef int T;
 | |
|         std::future<T> f;
 | |
|         {
 | |
|             std::promise<T> p(std::allocator_arg, test_allocator<T>());
 | |
|             assert(test_alloc_base::alloc_count == 1);
 | |
|             f = p.get_future();
 | |
|             assert(test_alloc_base::alloc_count == 1);
 | |
|             assert(f.valid());
 | |
|         }
 | |
|         assert(test_alloc_base::alloc_count == 1);
 | |
|         assert(f.valid());
 | |
|     }
 | |
|     assert(test_alloc_base::alloc_count == 0);
 | |
|     {
 | |
|         typedef int& T;
 | |
|         std::future<T> f;
 | |
|         {
 | |
|             std::promise<T> p(std::allocator_arg, test_allocator<int>());
 | |
|             assert(test_alloc_base::alloc_count == 1);
 | |
|             f = p.get_future();
 | |
|             assert(test_alloc_base::alloc_count == 1);
 | |
|             assert(f.valid());
 | |
|         }
 | |
|         assert(test_alloc_base::alloc_count == 1);
 | |
|         assert(f.valid());
 | |
|     }
 | |
|     assert(test_alloc_base::alloc_count == 0);
 | |
|     {
 | |
|         typedef void T;
 | |
|         std::future<T> f;
 | |
|         {
 | |
|             std::promise<T> p(std::allocator_arg, test_allocator<T>());
 | |
|             assert(test_alloc_base::alloc_count == 1);
 | |
|             f = p.get_future();
 | |
|             assert(test_alloc_base::alloc_count == 1);
 | |
|             assert(f.valid());
 | |
|         }
 | |
|         assert(test_alloc_base::alloc_count == 1);
 | |
|         assert(f.valid());
 | |
|     }
 | |
|     assert(test_alloc_base::alloc_count == 0);
 | |
| }
 |