(test_root)
| 1564 | return ExpandCommand |
| 1565 | |
| 1566 | def GetSuites(test_root): |
| 1567 | def IsSuite(path): |
| 1568 | return isdir(path) and exists(join(path, 'testcfg.py')) |
| 1569 | return [ f for f in os.listdir(test_root) if IsSuite(join(test_root, f)) ] |
| 1570 | |
| 1571 | |
| 1572 | def FormatTime(d): |