aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2023-08-16 12:17:23 -0700
committerJim Ingham <jingham@apple.com>2023-08-16 12:19:07 -0700
commitd268ba38083cd7c9c4f55cb0792d4a0db1d4768b (patch)
tree44df1c8523d5c2bd7307d5c7556ca535e7961298 /lldb/test/API/python_api
parent73ddc4474bc4c34d3b6f50cd7a6e88a12ca83f8d (diff)
downloadllvm-d268ba38083cd7c9c4f55cb0792d4a0db1d4768b.zip
llvm-d268ba38083cd7c9c4f55cb0792d4a0db1d4768b.tar.gz
llvm-d268ba38083cd7c9c4f55cb0792d4a0db1d4768b.tar.bz2
Test follow-up to 2e7aa2ee34eb53347396731dc8a3b2dbc6a3df45
The TestEvents.py test I added for ShadowListeners fails on Windows. Since there's no reason to believe the ShadowListeners feature has different behavior from the other event-based tests here, I copied the skips & expected_flakey's from the other tests in that file to this one.
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/event/TestEvents.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/event/TestEvents.py b/lldb/test/API/python_api/event/TestEvents.py
index a8a67a9..9c933d4 100644
--- a/lldb/test/API/python_api/event/TestEvents.py
+++ b/lldb/test/API/python_api/event/TestEvents.py
@@ -347,6 +347,9 @@ class EventAPITestCase(TestBase):
return state, restart
+ @expectedFlakeyLinux("llvm.org/pr23730") # Flaky, fails ~1/100 cases
+ @skipIfWindows # This is flakey on Windows AND when it fails, it hangs: llvm.org/pr38373
+ @skipIfNetBSD
def test_shadow_listener(self):
self.build()
exe = self.getBuildArtifact("a.out")