[LLDB] Fix decorator import in TestTwoHitsOneActual.py
[LLDB] Skip TestTwoHitsOneActual.py on Arm/AArch64 LinuxThis test has some race condition which is making it hang on LLDBArm/AArch64 Linux buildbot. I am marking it as skipped until weinvestigate
[LLDB] Skip TestTwoHitsOneActual.py on Arm/AArch64 LinuxThis test has some race condition which is making it hang on LLDBArm/AArch64 Linux buildbot. I am marking it as skipped until weinvestigate whats going wrong.
show more ...
Apparently you need a special makefile flag to use threads on Linux.This is a follow-up to https://reviews.llvm.org/D128776.
Threads which hit a breakpoint but fail the condition are considerednot to be hit. But another thread might be hit at the same time andactually stop. So we have to be sure to switch the first thr
Threads which hit a breakpoint but fail the condition are considerednot to be hit. But another thread might be hit at the same time andactually stop. So we have to be sure to switch the first thread'sstop info to eStopReasonNone or we'll report a hit when the conditionfailed, which is confusing.Differential Revision: https://reviews.llvm.org/D128776