diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-29 18:17:40 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-29 18:17:40 -0700 |
commit | 77c4a7eb74cc51419331009ca83671395f263c6c (patch) | |
tree | 3afe00e915fb253e975cc359365d8340f0d350f8 /tests/test_core.py | |
parent | 8f998042dc594b59129a77556d1c98160220b585 (diff) | |
parent | 0d23384af497877ad156af27e6f4aa731acea461 (diff) |
Merge pull request #1555 from inolen/tty_fixes
added stubs for tcgetattr and tcsetattr, minor node tty fixes
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 17707c44..51face6a 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -4670,6 +4670,10 @@ The current type of b is: 9 expected = open(path_from_root('tests', 'pthread', 'specific.c.txt'), 'r').read() self.do_run(src, expected, force_c=True) + def test_tcgetattr(self): + src = open(path_from_root('tests', 'termios', 'test_tcgetattr.c'), 'r').read() + self.do_run(src, 'success', force_c=True) + def test_time(self): # XXX Not sure what the right output is here. Looks like the test started failing with daylight savings changes. Modified it to pass again. src = open(path_from_root('tests', 'time', 'src.c'), 'r').read() |