1 /* Test that _IO_wfile_sync does not crash (bug 20568).
2 Copyright (C) 2019-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
25 #include <support/check.h>
26 #include <support/xstdio.h>
27 #include <support/xunistd.h>
28 #include <support/temp_file.h>
30 static const char test_data
[] = "This is a test of _IO_wfile_sync.";
39 infd
= create_temp_file ("tst-wfile-sync-in-", &infile
);
40 xwrite (infd
, test_data
, strlen (test_data
));
43 infd
= xopen (infile
, O_RDONLY
, 0);
44 infp
= fdopen (infd
, "r");
46 TEST_VERIFY_EXIT (setlocale (LC_ALL
, "de_DE.UTF-8") != NULL
);
47 /* Fill the stdio buffer and advance the read pointer. */
48 TEST_VERIFY_EXIT (fgetwc (infp
) != WEOF
);
49 /* This calls _IO_wfile_sync, it should not crash. */
50 TEST_VERIFY_EXIT (setvbuf (infp
, NULL
, _IONBF
, 0) == 0);
51 /* Verify that the external file offset has been synchronized. */
52 TEST_COMPARE (xlseek (infd
, 0, SEEK_CUR
), 1);
60 #include <support/test-driver.c>