| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9d5e7f5 commit 533ce48
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -43,6 +43,7 @@ | |||
| 43 | 43 | import utils | |
| 44 | 44 | import multiprocessing | |
| 45 | 45 | import errno | |
| 46 | + import copy | ||
| 46 | 47 | ||
| 47 | 48 | from os.path import join, dirname, abspath, basename, isdir, exists | |
| 48 | 49 | from datetime import datetime | |
@@ -796,7 +797,9 @@ def AddTestsToList(self, result, current_path, path, context, arch, mode): | |||
| 796 | 797 | tests = self.GetConfiguration(context).ListTests(current_path, path, | |
| 797 | 798 | arch, mode) | |
| 798 | 799 | for t in tests: t.variant_flags = v | |
| 799 | - result += tests * context.repeat | ||
| 800 | + result += tests | ||
| 801 | + for i in range(1, context.repeat): | ||
| 802 | + result += copy.deepcopy(tests) | ||
| 800 | 803 | ||
| 801 | 804 | def GetTestStatus(self, context, sections, defs): | |
| 802 | 805 | self.GetConfiguration(context).GetTestStatus(sections, defs) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments