Skip to content

Commit 99a5040

Browse files
committed
Revert "try using stdout to fix appveyor"
This reverts commit 56add41.
1 parent 56add41 commit 99a5040

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/main.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
static void expect(short condition, const char *file, int line)
3232
{
3333
if (condition) {
34-
fprintf(stdout, ".");
34+
fprintf(stderr, ".");
3535
}
3636
else {
37-
fprintf(stdout, "x");
38-
fprintf(stdout, "\nFAILED: %s line %d\n", file, line);
37+
fprintf(stderr, "x");
38+
fprintf(stderr, "\nFAILED: %s line %d\n", file, line);
3939
exit(1);
4040
}
41-
fflush(stdout);
41+
fflush(stderr);
4242
}
4343

4444
#ifdef _WIN32

0 commit comments

Comments
 (0)