Add tests to make sure setvbuf works.

This commit is contained in:
Tom Almeida
2018-08-09 02:08:53 +08:00
parent 540395c015
commit d5a9cd6953
2 changed files with 15 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ EXPECT_BINS=\
setjmp \
signal \
stdio/all \
stdio/setvbuf \
stdio/freopen \
stdio/fwrite \
stdio/getc_unget \
+14
View File
@@ -0,0 +1,14 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char ** argv) {
setvbuf(stdout, 0, _IONBF, 0);
FILE *f = fopen("stdio/stdio.in", "r");
setvbuf(f, 0, _IONBF, 0);
printf("%c\n", fgetc(f));
ungetc('H', f);
char *in = malloc(30);
printf("%s\n", fgets(in, 30, f));
printf("Hello\n");
return 0;
}