Changeset 99fbb608 in rtems
- Timestamp:
- Jul 21, 2009, 6:26:27 PM (10 years ago)
- Branches:
- 4.10, 4.11, master
- Children:
- 90e6d39
- Parents:
- 56864ff
- Location:
- testsuites/sptests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/sptests/ChangeLog
r56864ff r99fbb608 1 2009-07-21 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * spintrcritical06/init.c: Clean up. 4 * spintrcritical09/init.c: Adjust clock tick so it works on erc32. 5 * spintrcritical09/spintrcritical09.scn: Fill in. 6 1 7 2009-07-21 Joel Sherrill <joel.sherrill@oarcorp.com> 2 8 -
testsuites/sptests/spintrcritical06/init.c
r56864ff r99fbb608 62 62 ) 63 63 { 64 printk("r");65 64 (void) rtems_task_restart( Secondary_task_id, 1 ); 66 65 } … … 72 71 rtems_status_code status; 73 72 74 #if 0 75 if ( arg ) { 76 printk("f"); 73 if ( arg ) 77 74 (void) rtems_semaphore_flush( Semaphore ); 78 }79 #endif80 75 81 #if 0 &&defined(PRIORITY_NO_TIMEOUT_REVERSE)76 #if defined(PRIORITY_NO_TIMEOUT_REVERSE) 82 77 status = rtems_task_resume( Main_task ); 83 78 directive_failed( status, "rtems_task_resume" ); 84 79 #endif 85 80 86 printk("O");87 81 status = rtems_semaphore_obtain( 88 82 Semaphore, … … 145 139 #endif 146 140 147 printk("o");148 141 status = rtems_semaphore_obtain( 149 142 Semaphore, -
testsuites/sptests/spintrcritical09/init.c
r56864ff r99fbb608 68 68 puts( "\n\n*** TEST INTERRUPT CRITICAL SECTION 09 ***" ); 69 69 70 puts( "Init - Test may not be able to detect case is hit reliably" ); 70 71 puts( "Init - Trying to generate timeout from ISR while blocking" ); 71 72 sc = rtems_semaphore_create( … … 118 119 #define CONFIGURE_MAXIMUM_SEMAPHORES 1 119 120 #define CONFIGURE_RTEMS_INIT_TASKS_TABLE 120 #define CONFIGURE_MICROSECONDS_PER_TICK 500121 #define CONFIGURE_MICROSECONDS_PER_TICK 1000 121 122 122 123 #define CONFIGURE_INIT -
testsuites/sptests/spintrcritical09/spintrcritical09.scn
r56864ff r99fbb608 1 *** TEST INTERRUPT CRITICAL SECTION 09 *** 2 Init - Trying to generate timeout from ISR while blocking 3 Init - Test may not be able to detect case is hit reliably 4 Support - rtems_timer_create - creating timer 1 5 Init - Trying to generate timeout from ISR while blocking 6 *** END OF TEST INTERRUPT CRITICAL SECTION 09 ***
Note: See TracChangeset
for help on using the changeset viewer.