Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2798 → Rev 2799

/branches/tracing/uspace/app/tester/tester.c
57,7 → 57,6
#include "ipc/hangup.def"
#include "devmap/devmap1.def"
#include "vfs/vfs1.def"
#include "tdebug/tdebug1.def"
{NULL, NULL, NULL}
};
 
80,10 → 79,9
static void run_safe_tests(void)
{
test_t *test;
unsigned int i = 0;
unsigned int n = 0;
int i = 0, n = 0;
 
printf("\n*** Running all safe tests ***\n\n");
printf("\n*** Running all safe tests\n\n");
 
for (test = tests; test->name != NULL; test++) {
if (test->safe) {
94,7 → 92,7
}
}
 
printf("\nSafe tests completed, %u tests run, %u passed.\n\n", i + n, i);
printf("\nSafe tests completed, %d tests run, %d passed.\n\n", i + n, i);
}
 
static void list_tests(void)