Changeset e190a89b in mainline for uspace/app/tester/tester.c
- Timestamp:
- 2008-03-27T13:56:21Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2f60a529
- Parents:
- 047aa46
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/tester.c
r047aa46 re190a89b 80 80 { 81 81 test_t *test; 82 int i = 0, n = 0; 82 unsigned int i = 0; 83 unsigned int n = 0; 83 84 84 printf("\n*** Running all safe tests \n\n");85 printf("\n*** Running all safe tests ***\n\n"); 85 86 86 87 for (test = tests; test->name != NULL; test++) { … … 93 94 } 94 95 95 printf("\nSafe tests completed, % d tests run, %dpassed.\n\n", i + n, i);96 printf("\nSafe tests completed, %u tests run, %u passed.\n\n", i + n, i); 96 97 } 97 98
Note:
See TracChangeset
for help on using the changeset viewer.