minix/external/bsd/libc++/dist/libcxx/test/thread/futures/futures.promise/copy_ctor.fail.cpp
Lionel Sambuc 4684ddb6aa LLVM Minix changes
- import libcxx
 - reduce targets to the one when compiled as a tools

Change-Id: Iabb8427f80ff8e89463559a28bcb8b4f2bdbc496
2014-07-28 17:05:59 +02:00

81 lines
2.3 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.
//
//===----------------------------------------------------------------------===//
// <future>
// class promise<R>
// promise(const promise&) = delete;
#include <future>
#include <cassert>
#include "../test_allocator.h"
int main()
{
assert(test_alloc_base::count == 0);
{
std::promise<int> p0(std::allocator_arg, test_allocator<int>());
std::promise<int> p(p0);
assert(test_alloc_base::count == 1);
std::future<int> f = p.get_future();
assert(test_alloc_base::count == 1);
assert(f.valid());
try
{
f = p0.get_future();
assert(false);
}
catch (const std::future_error& e)
{
assert(e.code() == make_error_code(std::future_errc::no_state));
}
assert(test_alloc_base::count == 1);
}
assert(test_alloc_base::count == 0);
{
std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
std::promise<int&> p(p0);
assert(test_alloc_base::count == 1);
std::future<int&> f = p.get_future();
assert(test_alloc_base::count == 1);
assert(f.valid());
try
{
f = p0.get_future();
assert(false);
}
catch (const std::future_error& e)
{
assert(e.code() == make_error_code(std::future_errc::no_state));
}
assert(test_alloc_base::count == 1);
}
assert(test_alloc_base::count == 0);
{
std::promise<void> p0(std::allocator_arg, test_allocator<void>());
std::promise<void> p(p0);
assert(test_alloc_base::count == 1);
std::future<void> f = p.get_future();
assert(test_alloc_base::count == 1);
assert(f.valid());
try
{
f = p0.get_future();
assert(false);
}
catch (const std::future_error& e)
{
assert(e.code() == make_error_code(std::future_errc::no_state));
}
assert(test_alloc_base::count == 1);
}
assert(test_alloc_base::count == 0);
}