Changeset 260786 in webkit


Ignore:
Timestamp:
Apr 27, 2020 2:37:58 PM (4 years ago)
Author:
zhifei_fang@apple.com
Message:

Add some debug output for run-jsc-stress-tests
https://bugs.webkit.org/show_bug.cgi?id=210999
<rdar://problem/61353156>

This will help to address where the script get stucked

Reviewed by Jonathan Bedard.

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r260783 r260786  
     12020-04-27  Zhifei Fang  <zhifei_fang@apple.com>
     2
     3        Add some debug output for run-jsc-stress-tests
     4        https://bugs.webkit.org/show_bug.cgi?id=210999
     5        <rdar://problem/61353156>
     6
     7        This will help to address where the script get stucked
     8
     9        Reviewed by Jonathan Bedard.
     10
     11        * Scripts/run-jsc-stress-tests:
     12
    1132020-04-27  Wenson Hsieh  <wenson_hsieh@apple.com>
    214
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r260620 r260786  
    20862086def detectFailures
    20872087    raise if $bundle
    2088 
     2088    puts "Detecting Failures..."
    20892089    failures = []
    2090    
     2090    start_time = Time.now
    20912091    if $remote
    20922092        $remoteHosts.each_with_index {
     
    21162116
    21172117    familyMap = {}
     2118    puts "#{Time.now}: Writing to #{$outputDir + "results, pass, failed"}"
    21182119    $runlist.each_with_index {
    21192120        | plan, index |
     
    21322133    }
    21332134
     2135    puts "#{Time.now}: Writing to #{$outputDir + "resultsByFamily"}"
    21342136    File.open($outputDir + "resultsByFamily", "w") {
    21352137        | outp |
     
    21662168        }
    21672169    }
     2170    puts "Detacted failures in #{Time.now - start_time}"
    21682171end
    21692172
Note: See TracChangeset for help on using the changeset viewer.