This is an archive of the discontinued LLVM Phabricator instance.

[lldb] Skip ScriptInterpreter/Lua/watchpoint_callback.test on Apple Silicon
AbandonedPublic

Authored by JDevlieghere on Feb 7 2022, 11:27 AM.

Details

Reviewers
None
Summary

The watchpoint isn't hit the first time, resulting is us only printing "val =2". XFAIL the test until the underlying watchpoint issue gets fixed.

Diff Detail

Event Timeline

JDevlieghere requested review of this revision.Feb 7 2022, 11:27 AM
JDevlieghere created this revision.
labath added a subscriber: labath.Feb 7 2022, 11:33 AM

If I had to guess, I'd say this is because "b main" stops at a point after the variable has already been initialized. If true, it should be fairly easy to modify the test to not do that.

JDevlieghere abandoned this revision.Feb 7 2022, 12:08 PM

If I had to guess, I'd say this is because "b main" stops at a point after the variable has already been initialized. If true, it should be fairly easy to modify the test to not do that.

You're correct, thanks for the suggestion. Fixed in a5a71b139c6b3cb2cc569c81f91210dede2f1f4c.