Files
clang-p2996/libcxx/test/std/containers/sequences/deque/get_allocator.pass.cpp
Konstantin Boyarinov 8d25da78aa [libcxx][test][NFC] Extend get_allocator() testing for containers
Add dedicated tests for get_allocator() method for sequence, ordered and
unordered associative containers including constness coverage.

Reviewed by: ldionne, Mordante, rarutyun, #libc

Differential revision: https://reviews.llvm.org/D114785
2021-12-01 16:15:19 +03:00

35 lines
860 B
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
//
//===----------------------------------------------------------------------===//
// <deque>
// class deque
// allocator_type get_allocator() const
#include <deque>
#include <cassert>
#include "test_allocator.h"
#include "test_macros.h"
int main(int, char**) {
{
std::allocator<int> alloc;
const std::deque<int> d(alloc);
assert(d.get_allocator() == alloc);
}
{
other_allocator<int> alloc(1);
const std::deque<int, other_allocator<int> > d(alloc);
assert(d.get_allocator() == alloc);
}
return 0;
}