Commit 8bb77f95 authored by Elly Fong-Jones's avatar Elly Fong-Jones Committed by Commit Bot

base: extend ImmediateCrashTest.ExpectedOpcodeSequence for mac arm64

This test needs a case for what clang does on Mac Arm64, so add that.

Bug: 1128436,1121871
Change-Id: I5d57f99f7d041bc91d9fc862c1d10ddc1b48f540
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2412552
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#807243}
parent 5b72d1b2
......@@ -150,6 +150,13 @@ TEST(ImmediateCrashTest, ExpectedOpcodeSequence) {
// BRK #1
EXPECT_EQ(0XD4200020, *++it);
#elif defined(OS_MAC)
// BRK #1
EXPECT_EQ(0XD4200020, *++it);
// BRK #0
EXPECT_EQ(0XD4200000, *++it);
#else
// BRK #0
......
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