mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 22:48:23 +00:00
* Makefile.am, configure.ac: Add new test to provide coverage analysis of the current implementation of getitimer() and setitimer(). * psxitimer/.cvsignore, psxitimer/Makefile.am, psxitimer/init.c, psxitimer/psxitimer.scn: New files.
87 lines
2.4 KiB
C
87 lines
2.4 KiB
C
/*
|
|
* COPYRIGHT (c) 1989-2009.
|
|
* 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.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <pmacros.h>
|
|
#include <sys/time.h>
|
|
#include <errno.h>
|
|
|
|
void *POSIX_Init(
|
|
void *argument
|
|
)
|
|
{
|
|
int status;
|
|
struct itimerval itimer;
|
|
struct itimerval otimer;
|
|
|
|
puts( "\n\n*** POSIX TEST ITIMER ***" );
|
|
|
|
/* test getitimer stub */
|
|
puts( "getitimer -- bad which - EINVAL " );
|
|
status = getitimer( 1234, &itimer );
|
|
assert( status == -1 && errno == EINVAL );
|
|
|
|
puts( "getitimer -- NULL pointer - EFAULT " );
|
|
status = getitimer( ITIMER_REAL, NULL );
|
|
assert( status == -1 && errno == EFAULT );
|
|
|
|
puts( "getitimer -- ITIMER_REAL - ENOSYS " );
|
|
status = getitimer( ITIMER_REAL, &itimer );
|
|
assert( status == -1 && errno == ENOSYS );
|
|
|
|
puts( "getitimer -- ITIMER_VIRTUAL - ENOSYS " );
|
|
status = getitimer( ITIMER_VIRTUAL, &itimer );
|
|
assert( status == -1 && errno == ENOSYS );
|
|
|
|
puts( "getitimer -- ITIMER_PROF - ENOSYS " );
|
|
status = getitimer( ITIMER_PROF, &itimer );
|
|
assert( status == -1 && errno == ENOSYS );
|
|
|
|
/* test setitimer stub */
|
|
puts( "setitimer -- bad which - EINVAL " );
|
|
status = setitimer( 1234, &itimer, &otimer );
|
|
assert( status == -1 && errno == EINVAL );
|
|
|
|
puts( "setitimer -- NULL value pointer - EFAULT " );
|
|
status = setitimer( ITIMER_REAL, NULL, &otimer );
|
|
assert( status == -1 && errno == EFAULT );
|
|
|
|
puts( "setitimer -- NULL value pointer - EFAULT " );
|
|
status = setitimer( ITIMER_REAL, &itimer, NULL );
|
|
assert( status == -1 && errno == EFAULT );
|
|
|
|
puts( "setitimer -- ITIMER_REAL - ENOSYS " );
|
|
status = setitimer( ITIMER_REAL, &itimer, &otimer );
|
|
assert( status == -1 && errno == ENOSYS );
|
|
|
|
puts( "setitimer -- ITIMER_VIRTUAL - ENOSYS " );
|
|
status = setitimer( ITIMER_VIRTUAL, &itimer, &otimer );
|
|
assert( status == -1 && errno == ENOSYS );
|
|
|
|
puts( "setitimer -- ITIMER_PROF - ENOSYS " );
|
|
status = setitimer( ITIMER_PROF, &itimer, &otimer );
|
|
assert( status == -1 && errno == ENOSYS );
|
|
|
|
puts( "*** END OF POSIX TEST ITIMER ***" );
|
|
rtems_test_exit(0);
|
|
}
|
|
|
|
/* configuration information */
|
|
|
|
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
|
|
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
|
|
|
|
#define CONFIGURE_MAXIMUM_POSIX_THREADS 1
|
|
|
|
#define CONFIGURE_POSIX_INIT_THREAD_TABLE
|
|
|
|
#define CONFIGURE_INIT
|
|
#include <rtems/confdefs.h>
|