diff options
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index a77d2465..7c3c8857 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -4376,6 +4376,11 @@ PORT: 3979 self.do_run_from_file(src, output) + def test_netinet_in(self): + src = open(path_from_root('tests', 'netinet', 'in.cpp'), 'r').read() + expected = open(path_from_root('tests', 'netinet', 'in.out'), 'r').read() + self.do_run(src, expected) + # libc++ tests def test_iostream(self): |