Changes in / [3fea752:182487c6] in mainline
- Files:
-
- 15 added
- 19 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r3fea752 r182487c6 90 90 uspace/app/bithenge/bithenge 91 91 uspace/app/blkdump/blkdump 92 uspace/app/bnchmark/bnchmark 92 93 uspace/app/contacts/contacts 93 94 uspace/app/corecfg/corecfg … … 106 107 uspace/app/getterm/getterm 107 108 uspace/app/gunzip/gunzip 108 uspace/app/hbench/hbench109 109 uspace/app/inet/inet 110 110 uspace/app/init/init … … 131 131 uspace/app/nterm/nterm 132 132 uspace/app/pci/pci 133 uspace/app/perf/perf 133 134 uspace/app/ping/ping 134 135 uspace/app/ping6/ping6 … … 172 173 uspace/dist/app/bithenge 173 174 uspace/dist/app/blkdump 175 uspace/dist/app/bnchmark 174 176 uspace/dist/app/corecfg 175 177 uspace/dist/app/cpptest -
boot/Makefile.common
r3fea752 r182487c6 181 181 bithenge \ 182 182 blkdump \ 183 bnchmark \ 183 184 contacts \ 184 185 corecfg \ … … 191 192 fdisk \ 192 193 gunzip \ 193 hbench \194 194 inet \ 195 195 kill \ … … 205 205 mkmfs \ 206 206 nic \ 207 perf \ 207 208 sbi \ 208 209 sportdmp \ -
uspace/Makefile
r3fea752 r182487c6 38 38 app/bithenge \ 39 39 app/blkdump \ 40 app/bnchmark \ 40 41 app/contacts \ 41 42 app/corecfg \ … … 50 51 app/getterm \ 51 52 app/gunzip \ 52 app/hbench \53 53 app/init \ 54 54 app/inet \ … … 68 68 app/nterm \ 69 69 app/pci \ 70 app/perf \ 70 71 app/redir \ 71 72 app/sbi \ -
uspace/app/tester/tester.c
r3fea752 r182487c6 35 35 */ 36 36 37 #include <assert.h>38 37 #include <stdio.h> 39 38 #include <stddef.h> … … 41 40 #include <str.h> 42 41 #include <io/log.h> 43 #include <types/casting.h>44 42 #include "tester.h" 45 43 … … 146 144 } 147 145 148 assert(can_cast_size_t_to_int(len) && "test name length overflow"); 146 unsigned int _len = (unsigned int) len; 147 if ((_len != len) || (((int) _len) < 0)) { 148 printf("Command length overflow\n"); 149 return; 150 } 149 151 150 152 for (test = tests; test->name != NULL; test++) 151 printf("%-*s %s%s\n", (int)len, test->name, test->desc,153 printf("%-*s %s%s\n", _len, test->name, test->desc, 152 154 (test->safe ? "" : " (unsafe)")); 153 155 154 printf("%-*s Run all safe tests\n", (int)len, "*");156 printf("%-*s Run all safe tests\n", _len, "*"); 155 157 } 156 158 -
uspace/lib/c/Makefile
r3fea752 r182487c6 189 189 TEST_SOURCES = \ 190 190 test/adt/circ_buf.c \ 191 test/casting.c \192 191 test/fibril/timer.c \ 193 192 test/main.c \ … … 197 196 test/stdio/scanf.c \ 198 197 test/odict.c \ 199 test/perf.c \200 198 test/perm.c \ 201 199 test/qsort.c \ -
uspace/lib/c/test/main.c
r3fea752 r182487c6 32 32 PCUT_INIT; 33 33 34 PCUT_IMPORT(casting);35 34 PCUT_IMPORT(circ_buf); 36 35 PCUT_IMPORT(fibril_timer); … … 38 37 PCUT_IMPORT(mem); 39 38 PCUT_IMPORT(odict); 40 PCUT_IMPORT(perf);41 39 PCUT_IMPORT(perm); 42 40 PCUT_IMPORT(qsort);
Note:
See TracChangeset
for help on using the changeset viewer.