[Lldb-commits] [lldb] d268ba3 - Test follow-up to 2e7aa2ee34eb53347396731dc8a3b2dbc6a3df45
Jim Ingham via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 16 12:19:14 PDT 2023
Author: Jim Ingham
Date: 2023-08-16T12:19:07-07:00
New Revision: d268ba38083cd7c9c4f55cb0792d4a0db1d4768b
URL: https://github.com/llvm/llvm-project/commit/d268ba38083cd7c9c4f55cb0792d4a0db1d4768b
DIFF: https://github.com/llvm/llvm-project/commit/d268ba38083cd7c9c4f55cb0792d4a0db1d4768b.diff
LOG: 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.
Added:
Modified:
lldb/test/API/python_api/event/TestEvents.py
Removed:
################################################################################
diff --git a/lldb/test/API/python_api/event/TestEvents.py b/lldb/test/API/python_api/event/TestEvents.py
index a8a67a94a84345..9c933d440847c5 100644
--- a/lldb/test/API/python_api/event/TestEvents.py
+++ b/lldb/test/API/python_api/event/TestEvents.py
@@ -347,6 +347,9 @@ def wait_for_next_event(self, expected_state, test_shadow = False):
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")
More information about the lldb-commits
mailing list