| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8187f03 commit 657fa79
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -959,6 +959,12 @@ def GetTimeout(self, mode, section=''): | |||
| 959 | 959 | timeout = self.timeout * TIMEOUT_SCALEFACTOR[ARCH_GUESS or 'ia32'][mode] | |
| 960 | 960 | if section == 'pummel' or section == 'benchmark': | |
| 961 | 961 | timeout = timeout * 6 | |
| 962 | + # We run all WPT from one subset in the same process using workers. | ||
| 963 | + # As the number of the tests grow, it can take longer to run some of the | ||
| 964 | + # subsets, but it's still overall faster than running them in different | ||
| 965 | + # processes. | ||
| 966 | + elif section == 'wpt': | ||
| 967 | + timeout = timeout * 12 | ||
| 962 | 968 | return timeout | |
| 963 | 969 | ||
| 964 | 970 | def RunTestCases(cases_to_run, progress, tasks, flaky_tests_mode, measure_flakiness): | |
| Back | FazBrowse Home | New Git URL |
0 commit comments