diff options
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index cd2e2bd6..eab327cc 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -8667,7 +8667,7 @@ elif 'browser' in str(sys.argv): self.pids = [] def server_func(q): - proc = Popen([path_from_root('tests', 'socket_server.sh')]) + proc = Popen([path_from_root('tests', 'socket_server.sh'), '8990']) q.put(proc.pid) proc.communicate() @@ -8708,6 +8708,8 @@ elif 'browser' in str(sys.argv): with self.WebsockHarness(): self.btest('websockets.c', expected='571') + #def test_websockets_bi(self): + elif 'benchmark' in str(sys.argv): # Benchmarks. Run them with argument |benchmark|. To run a specific test, do # |benchmark.test_X|. |