(self, path, context)
| 916 | self.test_root = test_root |
| 917 | |
| 918 | def GetBuildRequirements(self, path, context): |
| 919 | (name, rest) = CarCdr(path) |
| 920 | result = [ ] |
| 921 | for test in self.tests_repos: |
| 922 | if not name or name.match(test.GetName()): |
| 923 | result += test.GetBuildRequirements(rest, context) |
| 924 | return result |
| 925 | |
| 926 | def ListTests(self, current_path, path, context, arch, mode): |
| 927 | (name, _rest) = CarCdr(path) |
nothing calls this directly
no test coverage detected