1 /* Copyright (C) 1991-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
23 #include <support/xstdio.h>
26 main (int argc
, char **argv
)
28 static const char hello
[] = "Hello, world.\n";
29 static const char replace
[] = "Hewwo, world.\n";
30 static const size_t replace_from
= 2, replace_to
= 4;
31 char filename
[FILENAME_MAX
];
32 char *name
= strrchr (*argv
, '/');
42 (void) sprintf (filename
, OBJPFX
"%s.test", name
);
44 f
= fopen (filename
, "w+");
51 (void) fputs (hello
, f
);
53 xfgets (buf
, sizeof (buf
), f
);
55 (void) fputs (buf
, f
);
59 for (i
= 0; i
< replace_from
; ++i
)
64 printf ("EOF at %Zu.\n", i
);
68 else if (c
!= hello
[i
])
70 printf ("Got '%c' instead of '%c' at %Zu.\n",
71 (unsigned char) c
, hello
[i
], i
);
79 long int where
= ftell (f
);
80 if (where
== (long int) replace_from
)
83 for (i
= replace_from
; i
< replace_to
; ++i
)
84 if (putc(replace
[i
], f
) == EOF
)
86 printf ("putc('%c') got %s at %Zu.\n",
87 replace
[i
], strerror (errno
), i
);
92 else if (where
== -1L)
94 printf ("ftell got %s (should be at %Zu).\n",
95 strerror (errno
), replace_from
);
100 printf ("ftell returns %lu; should be %Zu.\n", where
, replace_from
);
108 xfgets (buf
, sizeof (buf
), f
);
109 if (strcmp (buf
, replace
))
111 printf ("Read \"%s\" instead of \"%s\".\n", buf
, replace
);
117 printf ("Test FAILED! Losing file is \"%s\".\n", filename
);
120 (void) remove (filename
);
121 puts ("Test succeeded.");
124 return lose
? EXIT_FAILURE
: EXIT_SUCCESS
;