diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-10-30 14:10:24 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-10-30 14:10:24 -0700 |
commit | e28f99d18f384b98b416af7a9422d0959afab0e8 (patch) | |
tree | 525a3dca232ad4805c309080cfd2fa22b5ea7b4e /tests/runner.py | |
parent | fcb6c33bac763d7a8246674eff33b599c28c1b6e (diff) |
use binary data in websockets
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 78d85329..e88388e7 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -9246,8 +9246,8 @@ elif 'browser' in str(sys.argv): def websockify_func(q): print >> sys.stderr, 'running websockify on %d, forward to tcp %d' % (self.port+1, self.port) - proc = Popen([path_from_root('third_party', 'websockify', 'other', 'websockify'), '-vvv', str(self.port+1), '127.0.0.1:' + str(self.port)]) - #proc = Popen([path_from_root('third_party', 'websockify', 'websockify.py'), '-vvv', str(self.port+1), '127.0.0.1:' + str(self.port)]) + #proc = Popen([path_from_root('third_party', 'websockify', 'other', 'websockify'), '-vvv', str(self.port+1), '127.0.0.1:' + str(self.port)]) + proc = Popen([path_from_root('third_party', 'websockify', 'websockify.py'), '-vvv', str(self.port+1), '127.0.0.1:' + str(self.port)]) q.put(proc.pid) proc.communicate() |