blob: a314f5f30206da38cefb3db448cf9491ae94fd2a [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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: c++03, c++11, c++14
// XFAIL: availability-pmr-missing
// <memory_resource>
// class unsynchronized_pool_resource
#include <memory_resource>
#include <cassert>
int main(int, char**) {
std::pmr::memory_resource* expected = std::pmr::null_memory_resource();
std::pmr::set_default_resource(expected);
{
std::pmr::pool_options opts{0, 0};
std::pmr::unsynchronized_pool_resource r1;
std::pmr::unsynchronized_pool_resource r2(opts);
assert(r1.upstream_resource() == expected);
assert(r2.upstream_resource() == expected);
}
expected = std::pmr::new_delete_resource();
std::pmr::set_default_resource(expected);
{
std::pmr::pool_options opts{1024, 2048};
std::pmr::unsynchronized_pool_resource r1;
std::pmr::unsynchronized_pool_resource r2(opts);
assert(r1.upstream_resource() == expected);
assert(r2.upstream_resource() == expected);
}
return 0;
}