1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-21 18:22:53 +01:00

make XFAIL, REQUIRES, and UNSUPPORTED support multi-line expressions

llvm-svn: 351668
This commit is contained in:
Eric Fiselier 2019-01-20 00:51:02 +00:00
parent 59062585b0
commit fbb246b9e8
3 changed files with 44 additions and 3 deletions

View File

@ -1401,13 +1401,17 @@ class IntegratedTestKeywordParser(object):
@staticmethod
def _handleBooleanExpr(line_number, line, output):
"""A parser for BOOLEAN_EXPR type keywords"""
parts = [s.strip() for s in line.split(',') if s.strip() != '']
if output and output[-1][-1] == '\\':
output[-1] = output[-1][:-1] + parts[0]
del parts[0]
if output is None:
output = []
output.extend([s.strip() for s in line.split(',')])
output.extend(parts)
# Evaluate each expression to verify syntax.
# We don't want any results, just the raised ValueError.
for s in output:
if s != '*':
if s != '*' and not s.endswith('\\'):
BooleanExpression.evaluate(s, [])
return output
@ -1486,6 +1490,15 @@ def parseIntegratedTestScript(test, additional_parsers=[],
return lit.Test.Result(Test.UNRESOLVED,
"Test has unterminated run lines (with '\\')")
# Check boolean expressions for unterminated lines.
for key in keyword_parsers:
kp = keyword_parsers[key]
if kp.kind != ParserKind.BOOLEAN_EXPR:
continue
value = kp.getValue()
if value and value[-1][-1] == '\\':
raise ValueError("Test has unterminated %s lines (with '\\')" % key)
# Enforce REQUIRES:
missing_required_features = test.getMissingRequiredFeatures()
if missing_required_features:

View File

@ -9,5 +9,11 @@
//
// MY_CUSTOM: a b c
//
// MY_BOOL: a && (\
// MY_BOOL: b)
// MY_BOOL: d
//
// MY_BOOL_UNTERMINATED: a \
//
// END.
// MY_LIST: five

View File

@ -9,6 +9,7 @@ import os.path
import tempfile
import lit
import lit.Test as Test
from lit.TestRunner import ParserKind, IntegratedTestKeywordParser, \
parseIntegratedTestScript
@ -57,9 +58,11 @@ class TestIntegratedTestKeywordParser(unittest.TestCase):
IntegratedTestKeywordParser("MY_TAG.", ParserKind.TAG),
IntegratedTestKeywordParser("MY_DNE_TAG.", ParserKind.TAG),
IntegratedTestKeywordParser("MY_LIST:", ParserKind.LIST),
IntegratedTestKeywordParser("MY_BOOL:", ParserKind.BOOLEAN_EXPR),
IntegratedTestKeywordParser("MY_RUN:", ParserKind.COMMAND),
IntegratedTestKeywordParser("MY_CUSTOM:", ParserKind.CUSTOM,
custom_parse)
custom_parse),
]
@staticmethod
@ -102,6 +105,25 @@ class TestIntegratedTestKeywordParser(unittest.TestCase):
self.assertEqual(value[0].strip(), "%dbg(MY_RUN: at line 4) baz")
self.assertEqual(value[1].strip(), "%dbg(MY_RUN: at line 7) foo bar")
def test_boolean(self):
parsers = self.make_parsers()
self.parse_test(parsers)
bool_parser = self.get_parser(parsers, 'MY_BOOL:')
value = bool_parser.getValue()
self.assertEqual(len(value), 2) # there are only two run lines
self.assertEqual(value[0].strip(), "a && (b)")
self.assertEqual(value[1].strip(), "d")
def test_boolean_unterminated(self):
parsers = self.make_parsers() + \
[IntegratedTestKeywordParser("MY_BOOL_UNTERMINATED:", ParserKind.BOOLEAN_EXPR)]
try:
self.parse_test(parsers)
self.fail('expected exception')
except ValueError as e:
self.assertIn("Test has unterminated MY_BOOL_UNTERMINATED: lines", str(e))
def test_custom(self):
parsers = self.make_parsers()
self.parse_test(parsers)