Lines Matching refs:item
21 def getTestSuite(item, litConfig, cache):
22 """getTestSuite(item, litConfig, cache) -> (suite, relative_path)
24 Find the test suite containing @arg item.
26 @retval (None, ...) - Indicates no test suite contains @arg item.
27 @retval (suite, relative_path) - The suite that @arg item is in, and its
61 item = os.path.realpath(item)
65 while not os.path.isdir(item):
66 parent,base = os.path.split(item)
67 if parent == item:
70 item = parent
73 ts, relative = search(item)