Changeset 1d799ad in rtems
- Timestamp:
- Jun 3, 2014, 8:24:55 AM (7 years ago)
- Branches:
- 4.11, 5, master
- Children:
- f6fc6359
- Parents:
- 8df1f408
- Location:
- testsuites/rhealstone
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/rhealstone/rhdeadlockbrk/deadlockbrk.c
r8df1f408 r1d799ad 8 8 #include <timesys.h> 9 9 10 const char rtems_test_name[] = "RHDEADLOCKBRK"; 11 10 12 #define BENCHMARKS 20000 11 13 … … 35 37 Print_Warning(); 36 38 37 puts( "*** START OF RHDEADLOCKBRK ***");39 TEST_BEGIN(); 38 40 39 41 sem_attr = RTEMS_INHERIT_PRIORITY | RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY; … … 142 144 tobtain_overhead 143 145 ); 144 puts( "*** END OF RHDEADLOCKBRK ***");146 TEST_END(); 145 147 rtems_test_exit( 0 ); 146 148 } -
testsuites/rhealstone/rhilatency/ilatency.c
r8df1f408 r1d799ad 35 35 #include <tm27.h> 36 36 37 const char rtems_test_name[] = "RHILATENCY"; 38 37 39 #define BENCHMARKS 50000 38 40 … … 58 60 Print_Warning(); 59 61 60 puts( "*** START OF RHILATENCY ***");62 TEST_BEGIN(); 61 63 62 64 if ( … … 112 114 ); 113 115 114 puts( "*** END OF RHILATENCY ***");116 TEST_END(); 115 117 rtems_test_exit( 0 ); 116 118 } -
testsuites/rhealstone/rhmlatency/mlatency.c
r8df1f408 r1d799ad 11 11 #include <timesys.h> 12 12 #include <rtems/timerdrv.h> 13 14 const char rtems_test_name[] = "RHMLATENCY"; 13 15 14 16 #define MESSAGE_SIZE (sizeof(long) * 4) … … 36 38 Print_Warning(); 37 39 38 puts( "*** START OF RHMLATENCY ***");40 TEST_BEGIN(); 39 41 40 42 status = rtems_message_queue_create( … … 138 140 ); 139 141 140 puts( "*** END OF RHMLATENCY ***");142 TEST_END(); 141 143 rtems_test_exit( 0 ); 142 144 } -
testsuites/rhealstone/rhsemshuffle/semshuffle.c
r8df1f408 r1d799ad 7 7 #include <rtems/timerdrv.h> 8 8 #include <timesys.h> 9 10 const char rtems_test_name[] = "RHSEMSHUFFLE"; 9 11 10 12 #define BENCHMARKS 50000 … … 33 35 Print_Warning(); 34 36 35 puts( "*** START OF RHSEMSHUFFLE ***");37 TEST_BEGIN(); 36 38 37 39 sem_attr = RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY; … … 149 151 0 150 152 ); 151 puts( "*** END OF RHSEMSHUFFLE ***");153 TEST_END(); 152 154 rtems_test_exit( 0 ); 153 155 } -
testsuites/rhealstone/rhtaskpreempt/taskpreempt.c
r8df1f408 r1d799ad 7 7 #include <timesys.h> 8 8 #include <rtems/timerdrv.h> 9 10 const char rtems_test_name[] = "RHTASKPREEMPT"; 11 9 12 #define BENCHMARKS 50000 /* Number of benchmarks to run and average over */ 10 13 … … 63 66 ); 64 67 65 puts( "*** END OF RHTASKPREEMPT ***");68 TEST_END(); 66 69 rtems_test_exit( 0 ); 67 70 } … … 71 74 Print_Warning(); 72 75 73 puts( "*** START OF RHTASKPREEMPT ***");76 TEST_BEGIN(); 74 77 75 78 Task_name[0] = rtems_build_name( 'T','A','0','1' ); -
testsuites/rhealstone/rhtaskswitch/taskswitch.c
r8df1f408 r1d799ad 9 9 10 10 #define BENCHMARKS 50000 11 12 const char rtems_test_name[] = "RHTASKSWITCH"; 11 13 12 14 rtems_task Task01( rtems_task_argument ignored ); … … 41 43 ); 42 44 43 puts( "*** END OF RTASKSWITCH ***");45 TEST_END(); 44 46 rtems_test_exit( 0 ); 45 47 } … … 66 68 Print_Warning(); 67 69 68 puts( "*** START OF RHTASKSWITCH ***");70 TEST_BEGIN(); 69 71 70 72 Task_name[0] = rtems_build_name( 'T','A','0','1' );
Note: See TracChangeset
for help on using the changeset viewer.