use stderr for PASSED/FAILED

This commit is contained in:
Andrew Waterman 2012-02-01 14:22:34 -08:00
parent adf1cbd7db
commit c0829a629e
1 changed files with 2 additions and 2 deletions

View File

@ -157,11 +157,11 @@ int main(int argc, char** argv)
delete [] signature; delete [] signature;
} }
else else
printf("*** PASSED ***\n"); fprintf(stderr, "*** PASSED ***\n");
} }
else else
{ {
printf("*** FAILED *** (tohost = %ld)\n", (long)tohost); fprintf(stderr, "*** FAILED *** (tohost = %ld)\n", (long)tohost);
exit_code = -1; exit_code = -1;
} }
} }