[nfc][asan][android] Fix test after D124057

This commit is contained in:
Vitaly Buka 2022-04-22 17:16:11 -07:00
parent 62b78a063a
commit 9c8e93c1b5
1 changed files with 6 additions and 0 deletions

View File

@ -25,6 +25,8 @@ void test_setbuf() {
print_something();
print_one_byte(buf);
setbuf(stdout, NULL);
}
void test_setbuffer() {
@ -41,6 +43,8 @@ void test_setbuffer() {
print_something();
print_one_byte(buf);
setbuffer(stdout, NULL, 0);
}
void test_setlinebuf() {
@ -67,6 +71,8 @@ void test_setvbuf() {
print_something();
print_one_byte(buf);
setvbuf(stdout, NULL, _IONBF, 0);
}
int main(void) {