[GWP-ASan] Fix 6413872
authorAlex Brachet <abrachet@google.com>
Wed, 11 Jan 2023 23:42:19 +0000 (23:42 +0000)
committerAlex Brachet <abrachet@google.com>
Wed, 11 Jan 2023 23:43:27 +0000 (23:43 +0000)
Use testing not zxtest in non-Fuchsia case

compiler-rt/lib/gwp_asan/tests/harness.h

index e6be68c..efac826 100644 (file)
@@ -18,7 +18,7 @@ template <typename T> using TestWithParam = ::zxtest::TestWithParam<T>;
 #else
 #include "gtest/gtest.h"
 using Test = ::testing::Test;
-template <typename T> using TestWithParam = ::zxtest::TestWithParam<T>;
+template <typename T> using TestWithParam = ::testing::TestWithParam<T>;
 #endif
 
 #include "gwp_asan/guarded_pool_allocator.h"