From 9e80b4fe3242fc73a55981735560f19e3a438552 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Thu, 14 Sep 2023 10:58:59 +0200 Subject: Add GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST to gwp_asan unittests This keeps it working after the gtest update in a866ce789eb99da4d7a486eeb60a53be6c75f4fd GitOrigin-RevId: 4f1f171f330545c7fad254a672c61eaffcd9344c Change-Id: I92197f3bef174747782675bcc5eedc846e72a674 --- gwp_asan/tests/harness.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gwp_asan/tests/harness.cpp b/gwp_asan/tests/harness.cpp index 4633d3e..7ed408b 100644 --- a/gwp_asan/tests/harness.cpp +++ b/gwp_asan/tests/harness.cpp @@ -55,7 +55,9 @@ INSTANTIATE_TEST_SUITE_P(RecoverableAndNonRecoverableTests, #else INSTANTIATE_TEST_SUITE_P(RecoverableTests, BacktraceGuardedPoolAllocator, /* Recoverable */ testing::Values(true)); +GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(BacktraceGuardedPoolAllocator); INSTANTIATE_TEST_SUITE_P(RecoverableAndNonRecoverableTests, BacktraceGuardedPoolAllocatorDeathTest, /* Recoverable */ testing::Bool()); +GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(BacktraceGuardedPoolAllocatorDeathTest); #endif -- cgit v1.2.3