Changeset 223765 in webkit


Ignore:
Timestamp:
Oct 20, 2017 9:10:06 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r222709 and r223572.
https://bugs.webkit.org/show_bug.cgi?id=178587

Still getting mac-wk2 EWS bots stuck (Requested by ap on
#webkit).

Reverted changesets:

"Log stack-trace for run-webkit-tests when interrupted"
https://bugs.webkit.org/show_bug.cgi?id=176393
https://trac.webkit.org/changeset/222709

"webkitpy: Hang when workers write to the same stack trace
file"
https://bugs.webkit.org/show_bug.cgi?id=178402
https://trac.webkit.org/changeset/223572

Location:
trunk/Tools
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r223726 r223765  
     12017-10-20  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r222709 and r223572.
     4        https://bugs.webkit.org/show_bug.cgi?id=178587
     5
     6        Still getting mac-wk2 EWS bots stuck (Requested by ap on
     7        #webkit).
     8
     9        Reverted changesets:
     10
     11        "Log stack-trace for run-webkit-tests when interrupted"
     12        https://bugs.webkit.org/show_bug.cgi?id=176393
     13        https://trac.webkit.org/changeset/222709
     14
     15        "webkitpy: Hang when workers write to the same stack trace
     16        file"
     17        https://bugs.webkit.org/show_bug.cgi?id=178402
     18        https://trac.webkit.org/changeset/223572
     19
    1202017-10-19  Nan Wang  <n_wang@apple.com>
    221
  • trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

    r223429 r223765  
    3636
    3737from webkitpy.common.host import Host
    38 from webkitpy.common.interupt_debugging import log_stack_trace_on_cntrl_c, log_stack_trace_on_term
    3938from webkitpy.layout_tests.controllers.manager import Manager
    4039from webkitpy.layout_tests.models.test_run_results import INTERRUPTED_EXIT_STATUS
     
    7473        print >> stderr, str(e)
    7574        return EXCEPTIONAL_EXIT_STATUS
    76 
    77     stack_trace_path = host.filesystem.join(port.results_directory(), 'python_stack_trace.txt')
    78     log_stack_trace_on_cntrl_c(output_file=stack_trace_path)
    79     log_stack_trace_on_term(output_file=stack_trace_path)
    8075
    8176    if options.print_expectations:
Note: See TracChangeset for help on using the changeset viewer.