(path, prefix='test/')
| 1539 | return [Pattern(s) for s in stripped if len(s) > 0] |
| 1540 | |
| 1541 | def NormalizePath(path, prefix='test/'): |
| 1542 | # strip the extra path information of the specified test |
| 1543 | prefix = prefix.replace('\\', '/') |
| 1544 | path = path.replace('\\', '/') |
| 1545 | if path.startswith(prefix): |
| 1546 | path = path[len(prefix):] |
| 1547 | if path.endswith('.js'): |
| 1548 | path = path[:-3] |
| 1549 | elif path.endswith('.mjs'): |
| 1550 | path = path[:-4] |
| 1551 | return path |
| 1552 | |
| 1553 | def GetSpecialCommandProcessor(value): |
| 1554 | if (not value) or (value.find('@') == -1): |
no outgoing calls
no test coverage detected
searching dependent graphs…