| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent f39eb05 commit bdad1e2
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -42,6 +42,7 @@ | |||
| 42 | 42 | import utils | |
| 43 | 43 | import multiprocessing | |
| 44 | 44 | import errno | |
| 45 | + import copy | ||
| 45 | 46 | ||
| 46 | 47 | from os.path import join, dirname, abspath, basename, isdir, exists | |
| 47 | 48 | from datetime import datetime | |
@@ -773,7 +774,9 @@ def AddTestsToList(self, result, current_path, path, context, arch, mode): | |||
| 773 | 774 | tests = self.GetConfiguration(context).ListTests(current_path, path, | |
| 774 | 775 | arch, mode) | |
| 775 | 776 | for t in tests: t.variant_flags = v | |
| 776 | - result += tests * context.repeat | ||
| 777 | + result += tests | ||
| 778 | + for i in range(1, context.repeat): | ||
| 779 | + result += copy.deepcopy(tests) | ||
| 777 | 780 | ||
| 778 | 781 | def GetTestStatus(self, context, sections, defs): | |
| 779 | 782 | self.GetConfiguration(context).GetTestStatus(sections, defs) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments