You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
C++
68 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: c++98, c++03, c++11, c++14
|
|
// UNSUPPORTED: windows
|
|
// UNSUPPORTED: libcpp-no-if-constexpr
|
|
// MODULES_DEFINES: _LIBCPP_DEBUG=1
|
|
|
|
// Can't test the system lib because this test enables debug mode
|
|
// UNSUPPORTED: with_system_cxx_lib
|
|
|
|
// test container debugging
|
|
|
|
#define _LIBCPP_DEBUG 1
|
|
|
|
#include <map>
|
|
#include <set>
|
|
#include <utility>
|
|
#include <cassert>
|
|
#include "container_debug_tests.hpp"
|
|
#include "test_macros.h"
|
|
#include "debug_mode_helper.h"
|
|
|
|
using namespace IteratorDebugChecks;
|
|
|
|
template <class Container, ContainerType CT>
|
|
struct AssociativeContainerChecks : BasicContainerChecks<Container, CT> {
|
|
using Base = BasicContainerChecks<Container, CT>;
|
|
using value_type = typename Container::value_type;
|
|
using iterator = typename Container::iterator;
|
|
using const_iterator = typename Container::const_iterator;
|
|
using traits = std::iterator_traits<iterator>;
|
|
using category = typename traits::iterator_category;
|
|
|
|
using Base::makeContainer;
|
|
public:
|
|
static void run() {
|
|
Base::run();
|
|
}
|
|
|
|
private:
|
|
// FIXME Add tests here
|
|
};
|
|
|
|
int main(int, char**)
|
|
{
|
|
using SetAlloc = test_allocator<int>;
|
|
using MapAlloc = test_allocator<std::pair<const int, int>>;
|
|
// FIXME: Add debug mode to these containers
|
|
if ((false)) {
|
|
AssociativeContainerChecks<
|
|
std::set<int, std::less<int>, SetAlloc>, CT_Set>::run();
|
|
AssociativeContainerChecks<
|
|
std::multiset<int, std::less<int>, SetAlloc>, CT_MultiSet>::run();
|
|
AssociativeContainerChecks<
|
|
std::map<int, int, std::less<int>, MapAlloc>, CT_Map>::run();
|
|
AssociativeContainerChecks<
|
|
std::multimap<int, int, std::less<int>, MapAlloc>, CT_MultiMap>::run();
|
|
}
|
|
|
|
return 0;
|
|
}
|