Changeset 227999 in webkit


Ignore:
Timestamp:
Feb 2, 2018 12:47:38 AM (6 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed. Try to avoid webdriver tests step timing out in the bots.

This is another speculative workaround. Carlos Lopez suggested to use os._exit() instead of sys.exit() as a
workaround for a bug in python2.7 when using multiprocess module.

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r227989 r227999  
     12018-02-02  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Try to avoid webdriver tests step timing out in the bots.
     4
     5        This is another speculative workaround. Carlos Lopez suggested to use os._exit() instead of sys.exit() as a
     6        workaround for a bug in python2.7 when using multiprocess module.
     7
     8        * Scripts/run-webdriver-tests:
     9
    1102018-02-01  Youenn Fablet  <youenn@apple.com>
    211
  • trunk/Tools/Scripts/run-webdriver-tests

    r227894 r227999  
    2525import logging
    2626import optparse
     27import os
    2728import sys
    2829
     
    6263except NotImplementedError, e:
    6364    _log.error(str(e))
    64     sys.exit(-1)
     65    os._exit(-1)
    6566
    6667if port.name() in ['gtk', 'wpe']:
     
    8384    runner.dump_results_to_json_file(options.json_output)
    8485
    85 sys.exit(retval)
     86os._exit(retval)
    8687
Note: See TracChangeset for help on using the changeset viewer.