Changeset 290014 in webkit


Ignore:
Timestamp:
Feb 17, 2022, 5:38:12 AM (4 years ago)
Author:
Angelos Oikonomopoulos
Message:

[JSC] Increase timeout to account for MIPS slowness
https://bugs.webkit.org/show_bug.cgi?id=236763

Reviewed by Adrian Perez de Castro.

Commit https://commits.webkit.org/247272@main parallelized the
status fetching but also introduced a timeout. Unfortunately, the
MIPS boards used in the build.webkit.org buildbot are not fast
enough to gather the test results in this timeout, so the bot can
never complete its testing. This wasn't caught in EWS as the
buildbots use faster MIPS hardware there.

Significantly bump the timeout when fetching results.

  • Scripts/run-jsc-stress-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r289996 r290014  
     12022-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
    1192022-02-16  Sihui Liu  <sihui_liu@apple.com>
    220
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r289811 r290014  
    27702770        # (note, the test results are tagged with a run ID, so we'll
    27712771        # 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|
    27732773            runnerDir = "#{host.remoteDirectory}/#{$outputDir.basename}/.runner"
    27742774            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.