summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Phillips <mitchp@google.com>2024-04-09 15:59:12 +0200
committerMitch Phillips <mitchp@google.com>2024-04-09 15:59:12 +0200
commita2f5335b8404619c36b70c645ffb86e018670325 (patch)
treec86a661371651e1d841bf6347e7f9f99f7933fdc
parentd49456a11f2efc50d5496eab25548825489b9ac6 (diff)
downloadcore-a2f5335b8404619c36b70c645ffb86e018670325.tar.gz
[GWP-ASan] [debuggerd] Change test to handle default recoverable
Test: atest debuggerd_test Bug: N/A Change-Id: I01d79b0058c5c2b5ff0697be69b252728d46a82e
-rw-r--r--debuggerd/debuggerd_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/debuggerd/debuggerd_test.cpp b/debuggerd/debuggerd_test.cpp
index 526e2ca34..3e650c4b8 100644
--- a/debuggerd/debuggerd_test.cpp
+++ b/debuggerd/debuggerd_test.cpp
@@ -1874,8 +1874,8 @@ TEST_P(GwpAsanCrasherTest, run_gwp_asan_test) {
StartProcess([&recoverable]() {
const char* env[] = {"GWP_ASAN_SAMPLE_RATE=1", "GWP_ASAN_PROCESS_SAMPLING=1",
"GWP_ASAN_MAX_ALLOCS=40000", nullptr, nullptr};
- if (recoverable) {
- env[3] = "GWP_ASAN_RECOVERABLE=true";
+ if (!recoverable) {
+ env[3] = "GWP_ASAN_RECOVERABLE=false";
}
std::string test_name = ::testing::UnitTest::GetInstance()->current_test_info()->name();
test_name = std::regex_replace(test_name, std::regex("run_gwp_asan_test"),