[Lldb-commits] [lldb] r245464 - XTIMEOUT TestEvents and TestThreadStates for Windows to Android.
Chaoren Lin via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 19 10:22:12 PDT 2015
Author: chaoren
Date: Wed Aug 19 12:22:12 2015
New Revision: 245464
URL: http://llvm.org/viewvc/llvm-project?rev=245464&view=rev
Log:
XTIMEOUT TestEvents and TestThreadStates for Windows to Android.
Modified:
lldb/trunk/test/dosep.py
Modified: lldb/trunk/test/dosep.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dosep.py?rev=245464&r1=245463&r2=245464&view=diff
==============================================================================
--- lldb/trunk/test/dosep.py (original)
+++ lldb/trunk/test/dosep.py Wed Aug 19 12:22:12 2015
@@ -277,6 +277,7 @@ def walk_and_invoke(test_directory, test
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 @@ def getExpectedTimeouts(platform_name):
"TestExitDuringStep.py",
"TestHelloWorld.py",
}
+ if host.startswith("win32"):
+ expected_timeout |= {
+ "TestEvents.py",
+ "TestThreadStates.py",
+ }
elif target.startswith("freebsd"):
expected_timeout |= {
"TestBreakpointConditions.py",
More information about the lldb-commits
mailing list