(self, result, current_path, path, context, arch, mode)
| 899 | return self.GetConfiguration(context).GetBuildRequirements() |
| 900 | |
| 901 | def AddTestsToList(self, result, current_path, path, context, arch, mode): |
| 902 | tests = self.GetConfiguration(context).ListTests(current_path, path, |
| 903 | arch, mode) |
| 904 | result += tests |
| 905 | for i in range(1, context.repeat): |
| 906 | result += copy.deepcopy(tests) |
| 907 | |
| 908 | def GetTestStatus(self, context, sections, defs): |
| 909 | self.GetConfiguration(context).GetTestStatus(sections, defs) |
no test coverage detected