| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py
|
| index c193d0b34b28885330fbd766e21c005df469c076..ed35d59dc1cf6f67348d8cf3110ad2222e3644e0 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py
|
| @@ -25,14 +25,12 @@
|
| # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| -
|
| """Start and stop the crash service as it is used by the layout tests."""
|
|
|
| from webkitpy.layout_tests.servers import server_base
|
|
|
|
|
| class CrashService(server_base.ServerBase):
|
| -
|
| def __init__(self, port_obj, crash_dumps_dir):
|
| """Args:
|
| crash_dumps_dir: the absolute path to the directory where to store crash dumps
|
| @@ -44,6 +42,4 @@ class CrashService(server_base.ServerBase):
|
| self._env = None
|
|
|
| self._pid_file = self._filesystem.join(self._runtime_path, '%s.pid' % self._name)
|
| - self._start_cmd = [self._port_obj._path_to_crash_service(),
|
| - '--dumps-dir=%s' % self._crash_dumps_dir,
|
| - '--no-window']
|
| + self._start_cmd = [self._port_obj._path_to_crash_service(), '--dumps-dir=%s' % self._crash_dumps_dir, '--no-window']
|
|
|