This was actually a bad idea, because the test might produce warning

or error messages that are shorter than what we printed.


git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@558 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2012-04-02 21:43:59 +00:00
parent 94876a3695
commit 28f7487e06
1 changed files with 0 additions and 2 deletions

View File

@ -97,8 +97,6 @@ main(int argc, char *argv[])
/* run the tests */
for (n = pass = fail = 0; t_plan[n] != NULL; ++n) {
desc = t_plan[n]->desc ? t_plan[n]->desc : "no description";
if (verbose)
fprintf(stderr, " %d - %s\r", n + 1, desc);
if ((*t_plan[n]->func)()) {
printf("ok %d - %s\n", n + 1, desc);
++pass;