1 /* Test of reopening a stream.
2 Copyright (C) 2009-2011 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* Written by Eric Blake <ebb9@byu.net>, 2009. */
27 /* This test intentionally closes stderr. So, we arrange to have fd 10
28 (outside the range of interesting fd's during the test) set up to
29 duplicate the original stderr. */
31 #define BACKUP_STDERR_FILENO 10
32 #define ASSERT_STREAM myerr
42 /* We close fd 2 later, so save it in fd 10. */
43 if (dup2 (STDERR_FILENO
, BACKUP_STDERR_FILENO
) != BACKUP_STDERR_FILENO
44 || (myerr
= fdopen (BACKUP_STDERR_FILENO
, "w")) == NULL
)
49 ASSERT (tmp
= fopen ("/dev/null", "r"));
50 ASSERT (STDERR_FILENO
< fileno (tmp
));
51 ASSERT (fp
= fopen ("/dev/null", "w"));
52 ASSERT (fileno (tmp
) < fileno (fp
));
53 ASSERT (fclose (tmp
) == 0);
57 ASSERT (freopen ("/dev/null", "r+", fp
) == fp
);
58 ASSERT (STDERR_FILENO
< fileno (fp
));
60 ASSERT (freopen ("/dev/null", "r", stdin
) == stdin
);
61 ASSERT (STDIN_FILENO
== fileno (stdin
));
63 ASSERT (freopen ("/dev/null", "w", stdout
) == stdout
);
64 ASSERT (STDOUT_FILENO
== fileno (stdout
));
66 ASSERT (freopen ("/dev/null", "w", stderr
) == stderr
);
67 ASSERT (STDERR_FILENO
== fileno (stderr
));
70 ASSERT (close (STDIN_FILENO
) == 0);
72 ASSERT (freopen ("/dev/null", "w", stdout
) == stdout
);
73 ASSERT (STDOUT_FILENO
== fileno (stdout
));
75 ASSERT (freopen ("/dev/null", "w", stderr
) == stderr
);
76 ASSERT (STDERR_FILENO
== fileno (stderr
));
78 ASSERT (freopen ("/dev/null", "a", fp
) == fp
);
79 ASSERT (STDERR_FILENO
< fileno (fp
));
82 ASSERT (close (STDOUT_FILENO
) == 0);
84 ASSERT (freopen ("/dev/null", "w", stderr
) == stderr
);
85 ASSERT (STDERR_FILENO
== fileno (stderr
));
87 ASSERT (freopen ("/dev/null", "a+", fp
) == fp
);
88 ASSERT (STDERR_FILENO
< fileno (fp
));
91 ASSERT (close (STDERR_FILENO
) == 0);
93 ASSERT (freopen ("/dev/null", "w+", fp
) == fp
);
94 ASSERT (STDERR_FILENO
< fileno (fp
));