Lines Matching refs:test_root
877 def __init__(self, tests_repos, test_root):
880 self.test_root = test_root
903 root = TestConfiguration(context, self.test_root, 'root')
1410 help='Optional path to change test directory', dest='test_root', default=None)
1518 def GetSuites(test_root):
1521 return [ f for f in os.listdir(test_root) if IsSuite(join(test_root, f)) ]
1561 def ArgsToTestPaths(test_root, args, suites):
1609 test_root = join(workspace, 'test')
1610 if options.test_root is not None:
1611 test_root = options.test_root
1612 suites = GetSuites(test_root)
1613 repositories = [TestRepository(join(test_root, name)) for name in suites]
1616 root = LiteralTestSuite(repositories, test_root)
1617 paths = ArgsToTestPaths(test_root, args, suites)