Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ TEST_F(
// ASSERT_EQ inside schedulerShouldRenderTransactions trips, or ASan reports
// heap-use-after-free on the vptr load before our assertion runs.
// ---------------------------------------------------------------------------
#if GTEST_HAS_DEATH_TEST
#if GTEST_HAS_DEATH_TEST && !defined(__ANDROID__)
TEST_F(
SchedulerDelegateInvalidationTest,
GuardDisabled_JSThrowInitiatedTeardownIsUAF) {
Expand Down Expand Up @@ -610,7 +610,7 @@ TEST_F(
// the destroyed delegate → UAF caught by the magic sentinel inside
// schedulerDidDispatchCommand or by ASan on the vptr load.
// ---------------------------------------------------------------------------
#if GTEST_HAS_DEATH_TEST
#if GTEST_HAS_DEATH_TEST && !defined(__ANDROID__)
TEST_F(
SchedulerDelegateInvalidationTest,
GuardDisabled_DispatchCommandLambda_JSThrowInitiatedTeardownIsUAF) {
Expand Down
Loading