Files
clang-p2996/libcxx/test/std/thread/futures/futures.shared_future/dtor.pass.cpp
Louis Dionne a7f9895cc1 [runtimes] Rename various libcpp-has-no-XYZ Lit features to just no-XYZ
Since those features are general properties of the environment, it makes
sense to use them from libc++abi too, and so the name libcpp-has-no-xxx
doesn't make sense.

Differential Revision: https://reviews.llvm.org/D126482
2022-05-27 15:24:45 -04:00

74 lines
2.0 KiB
C++

//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: no-exceptions
// UNSUPPORTED: no-threads
// UNSUPPORTED: c++03
// <future>
// class shared_future<R>
// ~shared_future();
#include <future>
#include <cassert>
#include "test_macros.h"
#include "test_allocator.h"
int main(int, char**)
{
test_allocator_statistics alloc_stats;
assert(alloc_stats.alloc_count == 0);
{
typedef int T;
std::shared_future<T> f;
{
std::promise<T> p(std::allocator_arg, test_allocator<T>(&alloc_stats));
assert(alloc_stats.alloc_count == 1);
f = p.get_future();
assert(alloc_stats.alloc_count == 1);
assert(f.valid());
}
assert(alloc_stats.alloc_count == 1);
assert(f.valid());
}
assert(alloc_stats.alloc_count == 0);
{
typedef int& T;
std::shared_future<T> f;
{
std::promise<T> p(std::allocator_arg, test_allocator<int>(&alloc_stats));
assert(alloc_stats.alloc_count == 1);
f = p.get_future();
assert(alloc_stats.alloc_count == 1);
assert(f.valid());
}
assert(alloc_stats.alloc_count == 1);
assert(f.valid());
}
assert(alloc_stats.alloc_count == 0);
{
typedef void T;
std::shared_future<T> f;
{
std::promise<T> p(std::allocator_arg, test_allocator<T>(&alloc_stats));
assert(alloc_stats.alloc_count == 1);
f = p.get_future();
assert(alloc_stats.alloc_count == 1);
assert(f.valid());
}
assert(alloc_stats.alloc_count == 1);
assert(f.valid());
}
assert(alloc_stats.alloc_count == 0);
return 0;
}