diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-26 15:28:51 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-26 16:15:55 -0800 |
commit | 4840a62f3733b2f2a2c0fe88957e84d947710ab3 (patch) | |
tree | cc0475e4e07eb07cd0fdf73f539482563750bee6 /tests/runner.py | |
parent | f5fe8742041429a6504ee6dc535aeb3d8550dd89 (diff) |
fix sockaddr_storage and sockaddr_in
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 1ed063b7..e14a9a2e 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -6077,13 +6077,19 @@ localhost : 1 : 4 * -84.29.3.0. ''') + def test_799(self): + src = open(path_from_root('tests', '799.cpp'), 'r').read() + self.do_run(src, '''Set PORT family: 100, port: 3979 +Get PORT family: 100 +PORT: 3979 +''') + def test_ctype(self): # The bit fiddling done by the macros using __ctype_b_loc requires this. Settings.CORRECT_SIGNS = 1 src = open(path_from_root('tests', 'ctype', 'src.c'), 'r').read() expected = open(path_from_root('tests', 'ctype', 'output.txt'), 'r').read() self.do_run(src, expected) - CORRECT_SIGNS = 0 def test_atomic(self): src = ''' |