summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp09/screen02.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-06-11 16:42:05 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-06-11 16:42:05 +0000
commitf4773a477a59e098f8bce2543bbf176fb729a4f5 (patch)
treec0e283f611f37fef419da4e7be6f0eb29b5a8907 /testsuites/sptests/sp09/screen02.c
parent2011-06-11 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-f4773a477a59e098f8bce2543bbf176fb729a4f5.tar.bz2
2011-06-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp09/screen02.c, sp09/screen13.c, sp09/sp09.scn, sp29/init.c, sp30/sp30.scn, sp32/init.c, spclockget/init.c: Avoid use of deprecated rtems_clock_get() except in spclockget().
Diffstat (limited to 'testsuites/sptests/sp09/screen02.c')
-rw-r--r--testsuites/sptests/sp09/screen02.c24
1 files changed, 3 insertions, 21 deletions
diff --git a/testsuites/sptests/sp09/screen02.c b/testsuites/sptests/sp09/screen02.c
index 4536a500a4..ce9c2a8014 100644
--- a/testsuites/sptests/sp09/screen02.c
+++ b/testsuites/sptests/sp09/screen02.c
@@ -6,7 +6,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-2009.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -121,28 +121,10 @@ void Screen2()
fatal_directive_status(
status,
RTEMS_INVALID_ADDRESS,
- "rtems_clock_get sull pointer"
+ "rtems_clock_set sull pointer"
);
puts( "TA1 - rtems_clock_set - RTEMS_INVALID_ADDRESS" );
- /* NULL parameter */
- status = rtems_clock_get( RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, NULL );
- fatal_directive_status(
- status,
- RTEMS_INVALID_ADDRESS,
- "rtems_clock_get null pointer"
- );
- puts( "TA1 - rtems_clock_get - RTEMS_INVALID_ADDRESS" );
-
- /* arbitrary bad value for switch */
- status = rtems_clock_get( 0xff, &tv );
- fatal_directive_status(
- status,
- RTEMS_INVALID_NUMBER,
- "rtems_clock_get bad case"
- );
- puts( "TA1 - rtems_clock_get - RTEMS_INVALID_NUMBER" );
-
/* wake when NULL param */
status = rtems_task_wake_when( NULL );
fatal_directive_status(
@@ -156,7 +138,7 @@ void Screen2()
status = rtems_task_wake_when( &time );
if ( status == RTEMS_SUCCESSFUL ) {
puts(
- "TA1 - rtems_clock_get - RTEMS_NOT_DEFINED -- "
+ "TA1 - rtems_task_wake_when - RTEMS_NOT_DEFINED -- "
"DID BSP SET THE TIME OF DAY?"
);
} else {