diff options
author | Dan Albert <danalbert@google.com> | 2015-01-09 02:03:11 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-01-09 02:03:11 +0000 |
commit | 9ad580d97f3e445a1ccb71b394c71bfc8770e5c0 (patch) | |
tree | 0468955590ca5bb36f3bce14ff55076cbe621cae | |
parent | 8ba772db18a24495412f9bc5e0e08c4c9a0ad709 (diff) | |
parent | ce4c5fc5adebc9960edec1d2161e23d06b2d8107 (diff) | |
download | external_llvm-9ad580d97f3e445a1ccb71b394c71bfc8770e5c0.zip external_llvm-9ad580d97f3e445a1ccb71b394c71bfc8770e5c0.tar.gz external_llvm-9ad580d97f3e445a1ccb71b394c71bfc8770e5c0.tar.bz2 |
am ce4c5fc5: am 51e2fa82: Merge "[LIT] Add support for `UNSUPPORTED` tag to `TestRunner.parseIntegratedTestScript`"
* commit 'ce4c5fc5adebc9960edec1d2161e23d06b2d8107':
[LIT] Add support for `UNSUPPORTED` tag to `TestRunner.parseIntegratedTestScript`
-rw-r--r-- | utils/lit/lit/TestRunner.py | 34 | ||||
-rw-r--r-- | utils/lit/lit/util.py | 14 |
2 files changed, 29 insertions, 19 deletions
diff --git a/utils/lit/lit/TestRunner.py b/utils/lit/lit/TestRunner.py index 2993f62..b331d19 100644 --- a/utils/lit/lit/TestRunner.py +++ b/utils/lit/lit/TestRunner.py @@ -7,6 +7,7 @@ import tempfile import lit.ShUtil as ShUtil import lit.Test as Test import lit.util +from lit.util import to_bytes, to_string class InternalShellError(Exception): def __init__(self, command, message): @@ -325,16 +326,8 @@ def parseIntegratedTestScriptCommands(source_path): # UTF-8, so we convert the outputs to UTF-8 before returning. This way the # remaining code can work with "strings" agnostic of the executing Python # version. - - def to_bytes(str): - # Encode to UTF-8 to get binary data. - return str.encode('utf-8') - def to_string(bytes): - if isinstance(bytes, str): - return bytes - return to_bytes(bytes) - - keywords = ('RUN:', 'XFAIL:', 'REQUIRES:', 'END.') + + keywords = ['RUN:', 'XFAIL:', 'REQUIRES:', 'UNSUPPORTED:', 'END.'] keywords_re = re.compile( to_bytes("(%s)(.*)\n" % ("|".join(k for k in keywords),))) @@ -368,11 +361,15 @@ def parseIntegratedTestScriptCommands(source_path): finally: f.close() + def parseIntegratedTestScript(test, normalize_slashes=False, - extra_substitutions=[]): + extra_substitutions=[], require_script=True): """parseIntegratedTestScript - Scan an LLVM/Clang style integrated test script and extract the lines to 'RUN' as well as 'XFAIL' and 'REQUIRES' - information. The RUN lines also will have variable substitution performed. + and 'UNSUPPORTED' information. The RUN lines also will have variable + substitution performed. If 'require_script' is False an empty script may be + returned. This can be used for test formats where the actual script is + optional or ignored. """ # Get the temporary location, this is always relative to the test suite @@ -417,6 +414,7 @@ def parseIntegratedTestScript(test, normalize_slashes=False, # Collect the test lines from the script. script = [] requires = [] + unsupported = [] for line_number, command_type, ln in \ parseIntegratedTestScriptCommands(sourcepath): if command_type == 'RUN': @@ -441,6 +439,8 @@ def parseIntegratedTestScript(test, normalize_slashes=False, test.xfails.extend([s.strip() for s in ln.split(',')]) elif command_type == 'REQUIRES': requires.extend([s.strip() for s in ln.split(',')]) + elif command_type == 'UNSUPPORTED': + unsupported.extend([s.strip() for s in ln.split(',')]) elif command_type == 'END': # END commands are only honored if the rest of the line is empty. if not ln.strip(): @@ -465,11 +465,11 @@ def parseIntegratedTestScript(test, normalize_slashes=False, for ln in script] # Verify the script contains a run line. - if not script: + if require_script and not script: return lit.Test.Result(Test.UNRESOLVED, "Test has no run line!") # Check for unterminated run lines. - if script[-1][-1] == '\\': + if script and script[-1][-1] == '\\': return lit.Test.Result(Test.UNRESOLVED, "Test has unterminated run lines (with '\\')") @@ -480,6 +480,12 @@ def parseIntegratedTestScript(test, normalize_slashes=False, msg = ', '.join(missing_required_features) return lit.Test.Result(Test.UNSUPPORTED, "Test requires the following features: %s" % msg) + unsupported_features = [f for f in unsupported + if f in test.config.available_features] + if unsupported_features: + msg = ', '.join(unsupported_features) + return lit.Test.Result(Test.UNSUPPORTED, + "Test is unsupported with the following features: %s" % msg) return script,tmpBase,execdir diff --git a/utils/lit/lit/util.py b/utils/lit/lit/util.py index cce620c..ca1aeb6 100644 --- a/utils/lit/lit/util.py +++ b/utils/lit/lit/util.py @@ -7,6 +7,15 @@ import signal import subprocess import sys +def to_bytes(str): + # Encode to UTF-8 to get binary data. + return str.encode('utf-8') + +def to_string(bytes): + if isinstance(bytes, str): + return bytes + return to_bytes(bytes) + def detectCPUs(): """ Detects the number of CPUs on a system. Cribbed from pp. @@ -156,11 +165,6 @@ def executeCommand(command, cwd=None, env=None): if exitCode == -signal.SIGINT: raise KeyboardInterrupt - def to_string(bytes): - if isinstance(bytes, str): - return bytes - return bytes.encode('utf-8') - # Ensure the resulting output is always of string type. try: out = to_string(out.decode('utf-8')) |