Move test into test/std subdirectory.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@224658 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
43
test/std/thread/futures/futures.future_error/code.pass.cpp
Normal file
43
test/std/thread/futures/futures.future_error/code.pass.cpp
Normal file
@@ -0,0 +1,43 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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-has-no-threads
|
||||
|
||||
// <future>
|
||||
|
||||
// class future_error
|
||||
|
||||
// const error_code& code() const throw();
|
||||
|
||||
#include <future>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
std::error_code ec = std::make_error_code(std::future_errc::broken_promise);
|
||||
std::future_error f(ec);
|
||||
assert(f.code() == ec);
|
||||
}
|
||||
{
|
||||
std::error_code ec = std::make_error_code(std::future_errc::future_already_retrieved);
|
||||
std::future_error f(ec);
|
||||
assert(f.code() == ec);
|
||||
}
|
||||
{
|
||||
std::error_code ec = std::make_error_code(std::future_errc::promise_already_satisfied);
|
||||
std::future_error f(ec);
|
||||
assert(f.code() == ec);
|
||||
}
|
||||
{
|
||||
std::error_code ec = std::make_error_code(std::future_errc::no_state);
|
||||
std::future_error f(ec);
|
||||
assert(f.code() == ec);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user