Differential D47360 Diff 219818 test/std/utilities/utility/mem.res/mem.res.monotonic.buffer/mem.res.monotonic.buffer.ctor/without_buffer.pass.cpp
Changeset View
Changeset View
Standalone View
Standalone View
test/std/utilities/utility/mem.res/mem.res.monotonic.buffer/mem.res.monotonic.buffer.ctor/without_buffer.pass.cpp
- This file was added.
//===----------------------------------------------------------------------===// | |||||
// | |||||
// 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: c++98, c++03 | |||||
// <memory_resource> | |||||
// class monotonic_buffer_resource | |||||
#include <memory_resource> | |||||
#include <cassert> | |||||
#include "count_new.h" | |||||
int main() | |||||
{ | |||||
// Constructing a monotonic_buffer_resource should not cause allocations | |||||
// by itself; the resource should wait to allocate until an allocation is | |||||
// requested. | |||||
globalMemCounter.reset(); | |||||
std::pmr::set_default_resource(std::pmr::new_delete_resource()); | |||||
std::pmr::monotonic_buffer_resource r1; | |||||
assert(globalMemCounter.checkNewCalledEq(0)); | |||||
std::pmr::monotonic_buffer_resource r2(1024); | |||||
assert(globalMemCounter.checkNewCalledEq(0)); | |||||
std::pmr::monotonic_buffer_resource r3(1024, std::pmr::new_delete_resource()); | |||||
assert(globalMemCounter.checkNewCalledEq(0)); | |||||
} |