1 /* Test setvbuf on readonly fopen (using mmap stdio).
2 Copyright (C) 2002-2022 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/>. */
26 char name
[] = "/tmp/tst-mmap-setvbuf.XXXXXX";
28 const char * const test
= "Let's see if mmap stdio works with setvbuf.\n";
29 char temp
[strlen (test
) + 1];
30 int fd
= mkstemp (name
);
35 printf ("%u: cannot open temporary file: %m\n", __LINE__
);
42 printf ("%u: cannot fdopen temporary file: %m\n", __LINE__
);
49 f
= fopen (name
, "rm");
52 printf ("%u: cannot fopen temporary file: %m\n", __LINE__
);
56 if (setvbuf (f
, buf
, _IOFBF
, sizeof buf
))
58 printf ("%u: setvbuf failed: %m\n", __LINE__
);
62 if (fread (temp
, 1, strlen (test
), f
) != strlen (test
))
64 printf ("%u: couldn't read the file back: %m\n", __LINE__
);
67 temp
[strlen (test
)] = '\0';
69 if (strcmp (test
, temp
))
71 printf ("%u: read different string than was written:\n%s%s",
72 __LINE__
, test
, temp
);