Skip to content

Commit 1a78444

Browse files
committed
Temoprarily stop running this test on Intel macs
The test is expecting watchpoint hits that are valid on aarch64 systems but not on Intel. I need to update this test to match the actual behavior on Intel macs, and don't want the CI bots to stay broken while I get that figured out.
1 parent 954979d commit 1a78444

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/test/API/functionalities/watchpoint/unaligned-spanning-two-dwords/TestUnalignedSpanningDwords.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def hit_watchpoint_and_continue(self, process, iter_str):
2525
NO_DEBUG_INFO_TESTCASE = True
2626

2727
# debugserver on AArch64 has this feature.
28-
@skipIf(archs=no_match(["x86_64", "arm64", "arm64e", "aarch64"]))
28+
@skipIf(archs=no_match(["arm64", "arm64e", "aarch64"]))
2929
@skipUnlessDarwin
3030
# debugserver only started returning an exception address within
3131
# a range lldb expects in https://reviews.llvm.org/D147820 2023-04-12.
@@ -41,6 +41,8 @@ def test_unaligned_watchpoint(self):
4141
self, "break here", self.main_source_file
4242
)
4343

44+
thread.StepOver()
45+
4446
frame = thread.GetFrameAtIndex(0)
4547

4648
a_bytebuf_6 = frame.GetValueForVariablePath("a.bytebuf[6]")

0 commit comments

Comments
 (0)