XTIMEOUT TestEvents and TestThreadStates for Windows to Android.
llvm-svn: 245464
diff --git a/lldb/test/dosep.py b/lldb/test/dosep.py
index d9147ed..1233a96 100755
--- a/lldb/test/dosep.py
+++ b/lldb/test/dosep.py
@@ -277,6 +277,7 @@
def getExpectedTimeouts(platform_name):
# returns a set of test filenames that might timeout
# are we running against a remote target?
+ host = sys.platform
if platform_name is None:
target = sys.platform
remote = False
@@ -308,6 +309,11 @@
"TestExitDuringStep.py",
"TestHelloWorld.py",
}
+ if host.startswith("win32"):
+ expected_timeout |= {
+ "TestEvents.py",
+ "TestThreadStates.py",
+ }
elif target.startswith("freebsd"):
expected_timeout |= {
"TestBreakpointConditions.py",