28 May
2024
28 May
'24
8:39 p.m.
eric pouech (@epo) commented about dlls/msvcrt/tests/file.c:
free(tempf); }
+static void test_std_stream_buffering(void) +{ + int dup_fd, ret, pos; + FILE *file; + char ch; + + dup_fd = _dup(STDOUT_FILENO); + if (dup_fd != -1)
perhaps add an ok() test here (failure is unlikely, but should be caught IMO) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5462#note_67319