(value)
| 1551 | return path |
| 1552 | |
| 1553 | def GetSpecialCommandProcessor(value): |
| 1554 | if (not value) or (value.find('@') == -1): |
| 1555 | def ExpandCommand(args): |
| 1556 | return args |
| 1557 | return ExpandCommand |
| 1558 | else: |
| 1559 | prefix, _, suffix = value.partition('@') |
| 1560 | prefix = unquote(prefix).split() |
| 1561 | suffix = unquote(suffix).split() |
| 1562 | def ExpandCommand(args): |
| 1563 | return prefix + args + suffix |
| 1564 | return ExpandCommand |
| 1565 | |
| 1566 | def GetSuites(test_root): |
| 1567 | def IsSuite(path): |