aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-02-09 20:19:01 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-02-09 20:19:01 -0800
commitdae556e5aa0913a7901db9cfa7497d2bb3425d8b (patch)
tree8c55457050ea25119ee65a0b5b6714774c818454 /tests/test_core.py
parent35b3ab1920653562090857a5cdaded74dcde9775 (diff)
parentf296cefb2fdb31a52e93f205edc3d8c7b157c051 (diff)
Merge pull request #2084 from amatus/push-upstream
Remove _-prefix from in6addr_*
Diffstat (limited to 'tests/test_core.py')
-rw-r--r--tests/test_core.py5
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):