Commit fc2895b6 authored by Nate Chapin's avatar Nate Chapin Committed by Commit Bot

Temporarily suppress failing case in ScriptPromisePropertyGarbageCollectedTest.Reset

Bug: 1029822
Change-Id: I027b826e3cd2bee6764b89dc7ae82b5eee53dab8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2047276
Auto-Submit: Nate Chapin <japhet@chromium.org>
Reviewed-by: default avatarDaniel Cheng <dcheng@chromium.org>
Reviewed-by: default avatarKentaro Hara <haraken@chromium.org>
Commit-Queue: Nate Chapin <japhet@chromium.org>
Commit-Queue: Kentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#740050}
parent 3c058338
......@@ -471,7 +471,9 @@ TEST_F(ScriptPromisePropertyGarbageCollectedTest, Reset) {
v8::MicrotasksScope::PerformCheckpoint(GetIsolate());
EXPECT_EQ(1u, n_old_resolve_calls);
EXPECT_EQ(1u, n_new_reject_calls);
EXPECT_NE(old_promise, new_promise);
// TODO(crbug.com/1029822): This EXPECT is failing on win-asan only. It's
// not clear how it could fail but all of the other expectations pass.
// EXPECT_NE(old_promise, new_promise);
EXPECT_EQ(Wrap(MainWorld(), old_value), old_actual);
EXPECT_EQ(Wrap(MainWorld(), new_value), new_actual);
EXPECT_NE(old_actual, new_actual);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment