Files
rtems/testsuites/sptests/sp09/screen06.c
Joel Sherrill 1f7ee0275b 2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp02/task1.c, sp02/task2.c, sp02/task3.c, sp03/task2.c, sp05/task1.c,
	sp05/task2.c, sp05/task3.c, sp06/task1.c, sp06/task2.c,
	sp09/screen02.c, sp09/screen04.c, sp09/screen06.c, sp09/screen07.c,
	sp09/screen10.c, sp09/screen12.c, sp09/screen13.c, sp09/screen14.c,
	sp11/task1.c, sp11/task2.c, sp12/pridrv.c, sp12/pritask.c,
	sp12/task1.c, sp13/task1.c, sp13/task2.c, sp14/task1.c, sp16/task1.c,
	sp16/task4.c, sp19/fptask.c, sp19/task1.c, sp22/task1.c,
	sp24/task1.c, sp26/task1.c, sp29/init.c, sp30/task1.c, sp31/task1.c,
	sp33/init.c, sp45/init.c, sp46/init.c, sp50/init.c,
	spintrcritical06/init.c, spwatchdog/task1.c: Eliminate test routines
	TICKS_PER_SECOND and get_ticks_per_second() in favor of new
	rtems_clock_get_ticks_per_second().
2009-08-12 20:50:43 +00:00

127 lines
3.5 KiB
C

/* Screen6
*
* This routine generates error screen 6 for test 9.
*
* Input parameters: NONE
*
* Output parameters: NONE
*
* 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 "system.h"
void Screen6()
{
rtems_status_code status;
status = rtems_semaphore_obtain(
100,
RTEMS_DEFAULT_OPTIONS,
RTEMS_NO_TIMEOUT
);
fatal_directive_status(
status,
RTEMS_INVALID_ID,
"rtems_semaphore_obtain with illegal id"
);
puts( "TA1 - rtems_semaphore_obtain - RTEMS_INVALID_ID" );
status = rtems_semaphore_obtain(
Semaphore_id[ 1 ],
RTEMS_DEFAULT_OPTIONS,
RTEMS_NO_TIMEOUT
);
directive_failed( status, "rtems_semaphore_obtain successful" );
puts( "TA1 - rtems_semaphore_obtain - got sem 1 - RTEMS_SUCCESSFUL" );
status = rtems_semaphore_obtain(
Semaphore_id[ 1 ],
RTEMS_NO_WAIT,
RTEMS_NO_TIMEOUT
);
fatal_directive_status(
status,
RTEMS_UNSATISFIED,
"rtems_semaphore_obtain not available"
);
puts( "TA1 - rtems_semaphore_obtain - RTEMS_UNSATISFIED" );
puts( "TA1 - rtems_semaphore_obtain - timeout in 3 seconds" );
status = rtems_semaphore_obtain(
Semaphore_id[ 1 ],
RTEMS_DEFAULT_OPTIONS,
3 * rtems_clock_get_ticks_per_second()
);
fatal_directive_status(
status,
RTEMS_TIMEOUT,
"rtems_semaphore_obtain timeout"
);
puts( "TA1 - rtems_semaphore_obtain - woke up with RTEMS_TIMEOUT" );
status = rtems_semaphore_release( Semaphore_id[ 2 ] );
fatal_directive_status(
status,
RTEMS_NOT_OWNER_OF_RESOURCE,
"rtems_semaphore_release and not owner"
);
puts( "TA1 - rtems_semaphore_release - RTEMS_NOT_OWNER_OF_RESOURCE" );
status = rtems_semaphore_release( 100 );
fatal_directive_status(
status,
RTEMS_INVALID_ID,
"rtems_semaphore_release with illegal id"
);
puts( "TA1 - rtems_semaphore_release - RTEMS_INVALID_ID" );
puts( "TA1 - rtems_task_start - start TA2 - RTEMS_SUCCESSFUL" );
status = rtems_task_start( Task_id[ 2 ], Task_2, 0 );
directive_failed( status, "rtems_task_start of TA2" );
puts( "TA1 - rtems_task_wake_after - yield processor - RTEMS_SUCCESSFUL" );
status = rtems_task_wake_after( RTEMS_YIELD_PROCESSOR );
directive_failed( status, "rtems_task_wake_after (yield)" );
puts( "TA1 - rtems_semaphore_delete - delete sem 1 - RTEMS_SUCCESSFUL" );
status = rtems_semaphore_delete( Semaphore_id[ 1 ] );
directive_failed( status, "rtems_semaphore_delete of SM1" );
puts( "TA1 - rtems_semaphore_obtain - binary semaphore" );
status = rtems_semaphore_obtain(
Semaphore_id[ 2 ],
RTEMS_DEFAULT_OPTIONS,
RTEMS_NO_TIMEOUT
);
directive_failed( status, "rtems_semaphore_obtain");
puts( "TA1 - rtems_semaphore_delete - delete sem 2 - RTEMS_RESOURCE_IN_USE" );
status = rtems_semaphore_delete( Semaphore_id[ 2 ] );
fatal_directive_status(
status,
RTEMS_RESOURCE_IN_USE,
"rtems_semaphore_delete of SM2"
);
puts( "TA1 - rtems_task_wake_after - yield processor - RTEMS_SUCCESSFUL" );
status = rtems_task_wake_after( RTEMS_YIELD_PROCESSOR );
directive_failed( status, "rtems_task_wake_after (yield)" );
status = rtems_task_delete( Task_id[ 2 ] );
fatal_directive_status(
status,
RTEMS_INVALID_ID,
"rtems_task_delete after the task has been deleted"
);
puts( "TA1 - rtems_task_delete TA2 - already deleted RTEMS_INVALID_ID" );
}