blob: bfd72222b660bf8c6708ab8e277ebe629b257d4d [file] [log] [blame]
Craig Tillercba864b2017-02-17 10:27:56 -08001#!/usr/bin/env python
2
3# Copyright 2017, Google Inc.
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met:
9#
10# * Redistributions of source code must retain the above copyright
11# notice, this list of conditions and the following disclaimer.
12# * Redistributions in binary form must reproduce the above
13# copyright notice, this list of conditions and the following disclaimer
14# in the documentation and/or other materials provided with the
15# distribution.
16# * Neither the name of Google Inc. nor the names of its
17# contributors may be used to endorse or promote products derived from
18# this software without specific prior written permission.
19#
20# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32"""
33Wrapper around port server starting code.
34
35Used by developers who wish to run individual C/C++ tests outside of the
36run_tests.py infrastructure.
37
38The path to this file is called out in test/core/util/port.c, and printed as
39an error message to users.
40"""
41
Siddharth Shuklad194f592017-03-11 19:12:43 +010042from __future__ import print_function
43
Craig Tillercba864b2017-02-17 10:27:56 -080044import python_utils.start_port_server as start_port_server
45
46start_port_server.start_port_server()
Craig Tiller6d486022017-02-17 10:30:51 -080047
Siddharth Shuklad194f592017-03-11 19:12:43 +010048print("Port server started successfully")