blob: 7aa31a9e8b05833745a195058ca7bb12156ce0ec [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
// asan and msan will not call the new handler.
// UNSUPPORTED: sanitizer-new-delete
// We get availability markup errors when aligned allocation is missing
// XFAIL: availability-aligned_allocation-missing
// Libcxx when built for z/OS doesn't contain the aligned allocation functions,
// nor does the dynamic library shipped with z/OS.
// UNSUPPORTED: target={{.+}}-zos{{.*}}
// test operator new (nothrow)
#include <new>
#include <cstddef>
#include <cstdint>
#include <cassert>
#include <limits>
#include "test_macros.h"
constexpr auto OverAligned = __STDCPP_DEFAULT_NEW_ALIGNMENT__ * 2;
int new_handler_called = 0;
void my_new_handler()
{
++new_handler_called;
std::set_new_handler(0);
}
int A_constructed = 0;
struct alignas(OverAligned) A
{
A() { ++A_constructed; }
~A() { --A_constructed; }
};
void test_max_alloc() {
std::set_new_handler(my_new_handler);
auto do_test = []() {
void* vp = operator new [](std::numeric_limits<std::size_t>::max(),
std::align_val_t(OverAligned),
std::nothrow);
assert(new_handler_called == 1);
assert(vp == 0);
};
#ifndef TEST_HAS_NO_EXCEPTIONS
try
{
do_test();
}
catch (...)
{
assert(false);
}
#else
do_test();
#endif
}
int main(int, char**)
{
{
A* ap = new(std::nothrow) A[3];
assert(ap);
assert(reinterpret_cast<std::uintptr_t>(ap) % OverAligned == 0);
assert(A_constructed == 3);
delete [] ap;
assert(!A_constructed);
}
{
test_max_alloc();
}
return 0;
}