diff options
author | Scott Lobdell <slobdell@google.com> | 2021-04-25 19:53:00 +0000 |
---|---|---|
committer | Scott Lobdell <slobdell@google.com> | 2021-04-25 19:53:00 +0000 |
commit | dfa7c0a9b59c4ef591f46f7624dfe687c2bb0a6c (patch) | |
tree | 4b78af6f79fb9de2a712ac6268059bf838000a40 /tests/stdlib_test.cpp | |
parent | 987dccb5f063052171fae7a59cbf9fca808f8f80 (diff) | |
parent | 4626df89bfb561fc06d805e04d040a15f378919f (diff) |
Merge SP1A.210425.001
Change-Id: If71c56f3e2e9fbbeffc7096a560a5ef8b8cd8566
Diffstat (limited to 'tests/stdlib_test.cpp')
-rw-r--r-- | tests/stdlib_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stdlib_test.cpp b/tests/stdlib_test.cpp index 90ef8619f..6c7966d72 100644 --- a/tests/stdlib_test.cpp +++ b/tests/stdlib_test.cpp @@ -31,9 +31,9 @@ #include <android-base/file.h> #include <android-base/macros.h> +#include <android-base/silent_death_test.h> #include <gtest/gtest.h> -#include "BionicDeathTest.h" #include "math_data_test.h" #include "utils.h" @@ -447,7 +447,7 @@ static void TestBug57421_main() { // Even though this isn't really a death test, we have to say "DeathTest" here so gtest knows to // run this test (which exits normally) in its own process. -class stdlib_DeathTest : public BionicDeathTest {}; +using stdlib_DeathTest = SilentDeathTest; TEST_F(stdlib_DeathTest, getenv_after_main_thread_exits) { // https://code.google.com/p/android/issues/detail?id=57421 |