aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-09-27 16:41:39 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-09-27 16:41:39 -0700
commit4298da27622e634de5c7e6ee910a0cc67c649e9a (patch)
tree13c7694d517f06c14ac99e14d9c6803a328882b9
parent31f7b2a5a65d2d640343013dac4bb836c3bfba5f (diff)
workaround for websockify issue 63
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 7896b7a0..209064fc 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -8450,7 +8450,7 @@ elif 'browser' in str(sys.argv):
def zzztest_websockets(self):
try:
def server_func():
- os.system('while true; do (/bin/echo -en "test\x02") | nc -vvvl 8990; done;')
+ os.system('while true; do (/bin/echo -en "test\x02" ; sleep 1000) | nc -vvvl 8990; done;') # sleep to work around websockify issue 63
server = multiprocessing.Process(target=server_func)
server.start()