Remove XTIMEOUT from TestMultithreaded on linux

instead, mark the test as expected flaky, which will trigger a rerun in case the test hangs.

llvm-svn: 256935
This commit is contained in:
Pavel Labath 2016-01-06 14:15:32 +00:00
parent f4467cd1cd
commit b5846ce715
2 changed files with 2 additions and 5 deletions

View File

@ -51,6 +51,7 @@ class SBBreakpointCallbackCase(TestBase):
@skipIfNoSBHeaders
@skipIfWindows # clang-cl does not support throw or catch (llvm.org/pr24538)
@expectedFlakeyFreeBSD
@expectedFlakeyLinux
def test_sb_api_listener_resume(self):
""" Test that a process can be resumed from a non-main thread. """
self.build_and_test('driver.cpp listener_test.cpp test_listener_resume.cpp',

View File

@ -1144,11 +1144,7 @@ def getExpectedTimeouts(platform_name):
expected_timeout = set()
if target.startswith("linux"):
expected_timeout |= {
"TestMultithreaded.py",
}
elif target.startswith("android"):
if target.startswith("android"):
expected_timeout |= {
"TestExitDuringStep.py",
"TestHelloWorld.py",