Changeset 6c441cf8 in mainline for kernel/test
- Timestamp:
- 2008-02-27T11:49:17Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 56976a17
- Parents:
- fdb7795
- Location:
- kernel/test
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/avltree/avltree1.c
rfdb7795 r6c441cf8 247 247 static void test_tree_delmin(avltree_t *tree, count_t node_count, bool quiet) 248 248 { 249 int i = 0;249 unsigned int i = 0; 250 250 251 251 if (!quiet) -
kernel/test/fpu/fpu1.c
rfdb7795 r6c441cf8 216 216 waitq_wakeup(&can_start, WAKEUP_ALL); 217 217 218 while (atomic_get(&threads_ok) != total) {218 while (atomic_get(&threads_ok) != (long) total) { 219 219 if (!quiet) 220 220 printf("Threads left: %d\n", total - atomic_get(&threads_ok)); -
kernel/test/fpu/mips2.c
rfdb7795 r6c441cf8 152 152 waitq_wakeup(&can_start, WAKEUP_ALL); 153 153 154 while (atomic_get(&threads_ok) != total) {154 while (atomic_get(&threads_ok) != (long) total) { 155 155 if (!quiet) 156 156 printf("Threads left: %d\n", total - atomic_get(&threads_ok)); -
kernel/test/fpu/sse1.c
rfdb7795 r6c441cf8 152 152 waitq_wakeup(&can_start, WAKEUP_ALL); 153 153 154 while (atomic_get(&threads_ok) != total) {154 while (atomic_get(&threads_ok) != (long) total) { 155 155 if (!quiet) 156 156 printf("Threads left: %d\n", total - atomic_get(&threads_ok)); -
kernel/test/mm/falloc2.c
rfdb7795 r6c441cf8 89 89 90 90 for (i = 0; i < allocated; i++) { 91 for (k = 0; k <= (( FRAME_SIZE << order) - 1); k++) {91 for (k = 0; k <= (((index_t) FRAME_SIZE << order) - 1); k++) { 92 92 if (((uint8_t *) frames[i])[k] != val) { 93 93 if (!sh_quiet) -
kernel/test/synch/rwlock5.c
rfdb7795 r6c441cf8 70 70 { 71 71 int i, j, k; 72 count_treaders, writers;72 long readers, writers; 73 73 74 74 waitq_initialize(&can_start); -
kernel/test/test.c
rfdb7795 r6c441cf8 59 59 #include <thread/thread1.def> 60 60 #include <sysinfo/sysinfo1.def> 61 {NULL, NULL, NULL} 61 { 62 .name = NULL, 63 .desc = NULL, 64 .entry = NULL 65 } 62 66 }; 63 67 -
kernel/test/thread/thread1.c
rfdb7795 r6c441cf8 79 79 80 80 atomic_set(&finish, 0); 81 while (atomic_get(&threads_finished) < total) {81 while (atomic_get(&threads_finished) < ((long) total)) { 82 82 if (!quiet) 83 83 printf("Threads left: %d\n", total - atomic_get(&threads_finished));
Note:
See TracChangeset
for help on using the changeset viewer.