Changeset 290014 in webkit
- Timestamp:
- Feb 17, 2022, 5:38:12 AM (4 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r289996 r290014 1 2022-02-17 Angelos Oikonomopoulos <angelos@igalia.com> 2 3 [JSC] Increase timeout to account for MIPS slowness 4 https://bugs.webkit.org/show_bug.cgi?id=236763 5 6 Reviewed by Adrian Perez de Castro. 7 8 Commit https://commits.webkit.org/247272@main parallelized the 9 status fetching but also introduced a timeout. Unfortunately, the 10 MIPS boards used in the build.webkit.org buildbot are not fast 11 enough to gather the test results in this timeout, so the bot can 12 never complete its testing. This wasn't caught in EWS as the 13 buildbots use faster MIPS hardware there. 14 15 Significantly bump the timeout when fetching results. 16 17 * Scripts/run-jsc-stress-tests: 18 1 19 2022-02-16 Sihui Liu <sihui_liu@apple.com> 2 20 -
trunk/Tools/Scripts/run-jsc-stress-tests
r289811 r290014 2770 2770 # (note, the test results are tagged with a run ID, so we'll 2771 2771 # ignore any stale results from a previous run). 2772 forEachRemote($remoteHosts, :dropOnFailure => true, :timeout => REMOTE_TIMEOUT) { |_, host|2772 forEachRemote($remoteHosts, :dropOnFailure => true, :timeout => 8 * REMOTE_TIMEOUT) { |_, host| 2773 2773 runnerDir = "#{host.remoteDirectory}/#{$outputDir.basename}/.runner" 2774 2774 output = sshRead("if test -d #{runnerDir}; then cd #{runnerDir}; else false; fi && " + find_cmd, host, :ignoreFailure => true)
Note:
See TracChangeset
for help on using the changeset viewer.