diff options
| author | Vince Harron <vince@nethacker.com> | 2015-05-12 23:10:36 +0000 |
|---|---|---|
| committer | Vince Harron <vince@nethacker.com> | 2015-05-12 23:10:36 +0000 |
| commit | 06381737504c1023a806d5ce59892590dcfe45b5 (patch) | |
| tree | e9643fb852ae5133e6cf7ea5d398b751e3a95e63 | |
| parent | 9243c762bb8457dc8bedefc0d832e1dbbd68411a (diff) | |
| download | bcm5719-llvm-06381737504c1023a806d5ce59892590dcfe45b5.tar.gz bcm5719-llvm-06381737504c1023a806d5ce59892590dcfe45b5.zip | |
Added support for XTIMEOUT to dosep
Ideally, this would be put in the individual test files.
Unfortunately, I'm not sure how to do that quickly/easily.
I'm open to suggestions.
In the meantime, I'll submit this to stabilze the build server.
llvm-svn: 237206
| -rwxr-xr-x | lldb/test/dosep.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lldb/test/dosep.py b/lldb/test/dosep.py index 62b12b77895..c388b408583 100755 --- a/lldb/test/dosep.py +++ b/lldb/test/dosep.py @@ -24,6 +24,7 @@ or export LLDB_TESTCONCURRENTEVENTS_TIMEOUT=0 import multiprocessing import os import platform +import re import shlex import subprocess import sys @@ -147,6 +148,34 @@ def walk_and_invoke(test_root, dotest_options, num_threads): return (timed_out, failed, passed) +def getExpectedTimeouts(dotest_options): + # returns a set of test filenames that might timeout + # are we running against a remote target? + m = re.search('\sremote-(\w+)', dotest_options) + if m: + target = m.group(1) + remote = True + else: + target = sys.platform + remote = False + + expected_timeout = set() + + if target.startswith("linux"): + expected_timeout |= { + "TestAttachResume.py", + "TestConnectRemote.py", + "TestCreateAfterAttach.py", + "TestExitDuringStep.py", + "TestThreadStepOut.py", + } + elif target.startswith("android"): + expected_timeout |= { + "TestExitDuringStep.py", + "TestHelloWorld.py", + } + return expected_timeout + def main(): # We can't use sys.path[0] to determine the script directory # because it doesn't work under a debugger @@ -202,6 +231,13 @@ Run lldb test suite using a separate process for each test file. timed_out = set(timed_out) num_tests = len(failed) + len(passed) + # remove expected timeouts from failures + expected_timeout = getExpectedTimeouts(dotest_options) + for xtime in expected_timeout: + if xtime in timed_out: + timed_out.remove(xtime) + failed.remove(xtime) + print "Ran %d tests." % num_tests if len(failed) > 0: failed.sort() |

