summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/termios01
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-01 23:52:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-01 23:52:36 +0000
commitdda7c828a03243a5434d5debf28ca4e66301dc0c (patch)
treeaa425bed82845f45f9a2655613961d706e9bfe6b /testsuites/libtests/termios01
parent2009-10-01 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-dda7c828a03243a5434d5debf28ca4e66301dc0c.tar.bz2
2009-10-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, termios01/termios_testdriver.c: Do not use CONSOLE_USE_INTERRUPTS. That is in use by BSPs and we should not use it. * termios02/.cvsignore, termios02/Makefile.am, termios02/init.c, termios02/termios02.doc, termios02/termios02.scn: New files. termios02 is a test for tcdrain().
Diffstat (limited to 'testsuites/libtests/termios01')
-rw-r--r--testsuites/libtests/termios01/termios_testdriver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/libtests/termios01/termios_testdriver.c b/testsuites/libtests/termios01/termios_testdriver.c
index a413c2b023..4ac0e72d7f 100644
--- a/testsuites/libtests/termios01/termios_testdriver.c
+++ b/testsuites/libtests/termios01/termios_testdriver.c
@@ -35,7 +35,7 @@ int termios_test_driver_write_support (int minor, const char *buf, int len)
int nwrite = 0;
while (nwrite < len) {
-#if (CONSOLE_USE_INTERRUPTS)
+#if (TERMIOS_TEST_DRIVER_USE_INTERRUPTS)
termios_test_driver_outbyte_interrupt( minor, *buf++ );
#else
termios_test_driver_outbyte_polled( minor, *buf++ );