Skip to content
Snippets Groups Projects
Commit 9a0c10ef authored by Craig Tiller's avatar Craig Tiller
Browse files

Windows fix

parent 6b9477e8
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ print 'port server running on port %d' % args.port
pool = []
in_use = {}
with open(sys.argv[0]) as f:
with open(__file__) as f:
_MY_VERSION = hashlib.sha1(f.read()).hexdigest()
......
......@@ -548,7 +548,7 @@ def _start_port_server(port_server_port):
if not running:
port_log = open('portlog.txt', 'w')
port_server = subprocess.Popen(
['tools/run_tests/port_server.py', '-p', '%d' % port_server_port],
['python', 'tools/run_tests/port_server.py', '-p', '%d' % port_server_port],
stderr=subprocess.STDOUT,
stdout=port_log)
# ensure port server is up
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment