File: bug4.c

package info (click to toggle)
glibc 2.41-9
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 300,164 kB
  • sloc: ansic: 1,050,507; asm: 238,242; makefile: 20,378; python: 13,537; sh: 11,812; cpp: 5,197; awk: 1,795; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (50 lines) | stat: -rw-r--r-- 908 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <stdio.h>
#include <unistd.h>
#include <string.h>

#include <support/xstdio.h>

int stdio_block_read = 1, stdio_block_write = 1;

int
main (int argc, char *argv[])
{
  FILE *f;
  int i;
  char buffer[31];
  const char filename[] = OBJPFX "bug4.test";

  while ((i = getopt (argc, argv, "rw")) != -1)
    switch (i)
      {
      case 'r':
	stdio_block_read = 0;
	break;
      case 'w':
	stdio_block_write = 0;
	break;
      }

  f = fopen (filename, "w+");
  for (i = 0; i < 9000; ++i)
    putc('x', f);

  fseek (f, 8180L, 0);
  fwrite ("Where does this text come from?", 1, 31, f);
  fseek (f, 8180L, 0);
  xfread (buffer, 1, 31, f);
  fwrite (buffer, 1, 31, stdout);
  fclose (f);
  remove (filename);

  if (!memcmp (buffer, "Where does this text come from?", 31))
    {
      puts ("\nTest succeeded.");
      return 0;
    }
  else
    {
      puts ("\nTest FAILED!");
      return 1;
    }
}