//===-- size_class_map_test.cpp ---------------------------------*- 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 // //===----------------------------------------------------------------------===// #include "tests/scudo_unit_test.h" #include "size_class_map.h" template void testSizeClassMap() { typedef SizeClassMap SCMap; SCMap::print(); SCMap::validate(); } TEST(ScudoSizeClassMapTest, DefaultSizeClassMap) { testSizeClassMap(); } TEST(ScudoSizeClassMapTest, SvelteSizeClassMap) { testSizeClassMap(); } TEST(ScudoSizeClassMapTest, AndroidSizeClassMap) { testSizeClassMap(); } TEST(ScudoSizeClassMapTest, OneClassSizeClassMap) { testSizeClassMap>(); } #if SCUDO_CAN_USE_PRIMARY64 TEST(ScudoSizeClassMapTest, LargeMaxSizeClassMap) { testSizeClassMap>(); } #endif