Searched refs:assertions (Results 1 – 6 of 6) sorted by relevance
/art/tools/checker/match/ |
D | file.py | 31 def splitIntoGroups(assertions): argument 37 for assertion in assertions: 64 def matchDagGroup(assertions, c1Pass, scope, variables): argument 76 for assertion in assertions: 85 def testNotGroup(assertions, c1Pass, scope, variables): argument 93 for assertion in assertions: 98 def testEvalGroup(assertions, scope, variables): argument 99 for assertion in assertions: 119 assertionGroups = splitIntoGroups(testCase.assertions)
|
/art/tools/checker/file_format/checker/ |
D | struct.py | 44 self.assertions = [] 60 if not self.assertions or \ 61 (self.assertions[-1].variant != TestAssertion.Variant.InOrder and \ 62 self.assertions[-1].variant != TestAssertion.Variant.NextLine): 66 self.assertions.append(new_assertion) 71 and self.assertions == other.assertions
|
D | test.py | 36 self.assertNotEqual(len(checkFile.testCases[0].assertions), 0) 41 self.assertEqual(len(checkFile.testCases[0].assertions), 0) 84 self.assertEqual(len(testCase.assertions), 1) 85 return testCase.assertions[0] 318 self.assertEqual(len(checkerFile.testCases[0].assertions), 4) 335 self.assertEqual(len(checkerFile.testCases[0].assertions), 4) 378 self.assertEqual(len(testCase.assertions), 1) 379 assertion = testCase.assertions[0] 386 self.assertEqual(len(testCase.assertions), 1) 387 assertion = testCase.assertions[0]
|
/art/test/590-checker-arr-set-null-regression/ |
D | info.txt | 11 assertions in code generators.
|
/art/tools/checker/ |
D | README | 3 against a set of assertions specified alongside the tests. 6 Optimizing compiler. "Check lines" are assertions formatted as comments of the 50 The following assertions can be placed in a Java source file:
|
/art/test/435-try-finally-without-catch/ |
D | info.txt | 24 assertions. The optimizing compiler was thus adjusted to remove these
|