diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-10-03 11:29:51 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-10-03 11:29:51 -0700 |
commit | 20cd14971fd5aeb5c731ef0e17b586c5a46b27f9 (patch) | |
tree | 07107dd7edf73be37a4c6cf62cdc4bf4c19d2589 /tests | |
parent | cc14e2ad3a8764b3ee56fee0a7a71dc5be3de5ec (diff) |
fix gethostbyname closure error
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/runner.py b/tests/runner.py index 41a62d37..37a8d597 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5114,11 +5114,11 @@ def process(filename): } ''' self.do_run(src, '''www.cheezburger.com : 1 : 4 -* -84.29.0.0. -fail.on.this.never.work : 1 : 4 * -84.29.1.0. -localhost : 1 : 4 +fail.on.this.never.work : 1 : 4 * -84.29.2.0. +localhost : 1 : 4 +* -84.29.3.0. ''') def test_ctype(self): @@ -8798,7 +8798,7 @@ elif 'browser' in str(sys.argv): def test_zz_websockets_gethostbyname(self): try: with self.WebsockHarness(7000): - self.btest('websockets_gethostbyname.c', expected='571') + self.btest('websockets_gethostbyname.c', expected='571', args=['-O2']) finally: self.clean_pids() |