forked from Imagelibrary/rtems
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
145 lines
3.4 KiB
C
145 lines
3.4 KiB
C
/*
|
|
* COPYRIGHT (c) 1989-2010.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "tmacros.h"
|
|
#include <termios.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
|
|
rtems_task Init(
|
|
rtems_task_argument ignored
|
|
)
|
|
{
|
|
int sc;
|
|
pid_t pid;
|
|
char *term_name_p;
|
|
char term_name[32];
|
|
|
|
puts( "\n\n*** TERMIOS 02 TEST ***" );
|
|
|
|
puts( "tcdrain(12) - EBADF" );
|
|
sc = tcdrain(12);
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno == EBADF );
|
|
|
|
puts( "tcdrain(stdin) - OK" );
|
|
sc = tcdrain(0);
|
|
rtems_test_assert( !sc );
|
|
|
|
puts( "tcdrain(stdout) - OK" );
|
|
tcdrain(1);
|
|
rtems_test_assert( !sc );
|
|
|
|
puts( "tcdrain(stderr) - OK" );
|
|
tcdrain(2);
|
|
rtems_test_assert( !sc );
|
|
|
|
puts( "" );
|
|
|
|
/***** TEST TCFLOW *****/
|
|
puts( "tcflow(stdin, TCOOFF) - ENOTSUP" );
|
|
sc = tcflow( 0, TCOOFF );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = ENOTSUP );
|
|
|
|
puts( "tcflow(stdin, TCOON) - ENOTSUP" );
|
|
sc = tcflow( 0, TCOON );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = ENOTSUP );
|
|
|
|
puts( "tcflow(stdin, TCIOFF) - ENOTSUP" );
|
|
sc = tcflow( 0, TCIOFF );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = ENOTSUP );
|
|
|
|
puts( "tcflow(stdin, TCION) - ENOTSUP" );
|
|
sc = tcflow( 0, TCION );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = ENOTSUP );
|
|
|
|
puts( "tcflow(stdin, 22) - EINVAL" );
|
|
sc = tcflow( 0, 22 );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = EINVAL );
|
|
|
|
puts( "" );
|
|
|
|
/***** TEST TCFLUSH *****/
|
|
puts( "tcflush(stdin, TCIFLUSH) - ENOTSUP" );
|
|
sc = tcflush( 0, TCIFLUSH );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = ENOTSUP );
|
|
|
|
puts( "tcflush(stdin, TCOFLUSH) - ENOTSUP" );
|
|
sc = tcflush( 0, TCOFLUSH );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = ENOTSUP );
|
|
|
|
puts( "tcflush(stdin, TCIOFLUSH) - ENOTSUP" );
|
|
sc = tcflush( 0, TCIOFLUSH );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = ENOTSUP );
|
|
|
|
puts( "tcflush(stdin, 22) - EINVAL" );
|
|
sc = tcflush( 0, 22 );
|
|
rtems_test_assert( sc == -1 );
|
|
rtems_test_assert( errno = EINVAL );
|
|
|
|
puts( "" );
|
|
|
|
/***** TEST TCGETPGRP *****/
|
|
puts( "tcgetpgrp( 1 ) - OK" );
|
|
pid = tcgetpgrp(1);
|
|
rtems_test_assert( pid == getpid() );
|
|
|
|
puts( "tcsetpgrp( 1, 3 ) - OK" );
|
|
sc = tcsetpgrp( 1, 3 );
|
|
rtems_test_assert( !sc );
|
|
|
|
puts( "" );
|
|
|
|
/***** TEST TCSENDBREAK *****/
|
|
puts( "tcsendbreak( 1, 0 ) - OK" );
|
|
sc = tcsendbreak( 1, 0 );
|
|
rtems_test_assert( !sc );
|
|
|
|
puts( "" );
|
|
|
|
/***** TEST CTERMID *****/
|
|
puts( "ctermid( NULL ) - OK" );
|
|
term_name_p = ctermid( NULL );
|
|
rtems_test_assert( term_name_p );
|
|
printf( "ctermid ==> %s\n", term_name_p );
|
|
|
|
puts( "ctermid( term_name ) - OK" );
|
|
term_name_p = ctermid( term_name );
|
|
rtems_test_assert( term_name_p == term_name );
|
|
printf( "ctermid ==> %s\n", term_name_p );
|
|
|
|
puts( "*** END OF TERMIOS 02 TEST ***" );
|
|
exit( 0 );
|
|
}
|
|
|
|
|
|
/* NOTICE: the clock driver is explicitly disabled */
|
|
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
|
|
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
|
|
|
|
#define CONFIGURE_MAXIMUM_TASKS 1
|
|
#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
|
|
|
|
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
|
|
|
|
#define CONFIGURE_INIT
|
|
#include <rtems/confdefs.h>
|