XTIMEOUT TestEvents and TestThreadStates for Windows to Android.

llvm-svn: 245464
This commit is contained in:
Chaoren Lin 2015-08-19 17:22:12 +00:00
parent 749adeba3d
commit febef1b017

View File

@ -277,6 +277,7 @@ def walk_and_invoke(test_directory, test_subdir, dotest_argv, num_threads):
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",