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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/* Regression test for fseek and freopen bugs. */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int
main (int argc, char *argv[])
{
int lose = 0;
char filename[] = "/tmp/bug7.XXXXXX";
FILE *fp;
int fd = mkstemp (filename);
if (fd == -1)
{
printf ("mkstemp failed\n");
lose = 1;
}
else
{
close (fd);
fp = fopen (filename, "w+");
fprintf (fp, "Hello world!\n");
fflush (fp);
fseek (fp, 5L, SEEK_SET);
if (fseek (fp, -1L, SEEK_CUR) < 0)
{
printf ("seek failed\n");
lose = 1;
}
fclose (fp);
remove (filename);
}
{
FILE *file1;
FILE *file2;
char filename1[] = "/tmp/bug7.XXXXXX";
char filename2[] = "/tmp/bug7.XXXXXX";
int ch;
int fd1 = mkstemp (filename1);
int fd2 = mkstemp (filename2);
if (fd1 == -1 || fd2 == -1)
{
printf ("mkstemp failed\n");
lose = 1;
}
else
{
close (fd1);
close (fd2);
file1 = fopen (filename1, "w");
fclose (file1);
file2 = fopen (filename2, "w");
fputc ('x', file2);
fclose (file2);
file1 = fopen (filename1, "r");
file2 = freopen (filename2, "r", file1);
if ((ch = fgetc (file2)) != 'x')
{
printf ("wrong character in reopened file, value = %d\n", ch);
lose = 1;
}
fclose (file2);
remove (filename1);
remove (filename2);
}
}
puts (lose ? "Test FAILED!" : "Test succeeded.");
return lose;
}
|