Home
last modified time | relevance | path

Searched refs:checkLine (Results 1 – 2 of 2) sorted by relevance

/art/tools/
Dchecker.py407 def __findFirstMatch(self, checkLine, outputLines, startLineNo, lineFilter, varState): argument
411 newVarState = checkLine.match(outputLine, varState)
433 for checkLine in checkLines:
435 self.__findFirstMatch(checkLine, outputLines, startLineNo, matchedLines, varState)
437 Logger.testFailed("Could not match check line \"" + checkLine.content + "\" " +
439 self.fileName, checkLine.lineNo)
453 for checkLine in checkLines:
454 assert checkLine.variant == CheckLine.Variant.Not
456 self.__findFirstMatch(checkLine, outputLines, startLineNo, [], varState)
458 Logger.testFailed("CHECK-NOT line \"" + checkLine.content + "\" matches output line " + \
[all …]
Dchecker_test.py69 def __getRegex(self, checkLine): argument
70 return "".join(map(lambda x: "(" + self.__getPartPattern(x) + ")", checkLine.lineParts))
186 checkLine = checker.CheckLine(checkString)
187 newVarState = checkLine.match(outputString, varState)
192 checkLine = checker.CheckLine(checkString)
193 self.assertIsNone(checkLine.match(outputString, varState))