VirtualBox

source: kBuild/vendor/grep/2.12/gnulib-tests/test-fchdir.c@ 3576

Last change on this file since 3576 was 2595, checked in by bird, 13 years ago

gnu grep version 2.12 (grep-2.12.tar.xz, md5sum=8d2f0346d08b13c18afb81f0e8aa1e2f)

  • Property svn:eol-style set to native
File size: 2.9 KB
Line 
1/* Test changing to a directory named by a file descriptor.
2 Copyright (C) 2009-2012 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17/* Written by Eric Blake <[email protected]>, 2009. */
18
19#include <config.h>
20
21#include <unistd.h>
22
23#include "signature.h"
24SIGNATURE_CHECK (fchdir, int, (int));
25
26#include <errno.h>
27#include <fcntl.h>
28#include <stdlib.h>
29#include <string.h>
30
31#include "cloexec.h"
32#include "macros.h"
33
34int
35main (void)
36{
37 char *cwd;
38 int fd;
39 int i;
40
41 cwd = getcwd (NULL, 0);
42 ASSERT (cwd);
43
44 fd = open (".", O_RDONLY);
45 ASSERT (0 <= fd);
46
47 /* Test behaviour for invalid file descriptors. */
48 {
49 errno = 0;
50 ASSERT (fchdir (-1) == -1);
51 ASSERT (errno == EBADF);
52 }
53 {
54 errno = 0;
55 ASSERT (fchdir (99) == -1);
56 ASSERT (errno == EBADF);
57 }
58
59 /* Check for other failure cases. */
60 {
61 int bad_fd = open ("/dev/null", O_RDONLY);
62 ASSERT (0 <= bad_fd);
63 errno = 0;
64 ASSERT (fchdir (bad_fd) == -1);
65 ASSERT (errno == ENOTDIR);
66 ASSERT (close (bad_fd) == 0);
67 }
68
69 /* Repeat test twice, once in '.' and once in '..'. */
70 for (i = 0; i < 2; i++)
71 {
72 ASSERT (chdir (".." + 1 - i) == 0);
73 ASSERT (fchdir (fd) == 0);
74 {
75 size_t len = strlen (cwd) + 1;
76 char *new_dir = malloc (len);
77 ASSERT (new_dir);
78 ASSERT (getcwd (new_dir, len) == new_dir);
79 ASSERT (strcmp (cwd, new_dir) == 0);
80 free (new_dir);
81 }
82
83 /* For second iteration, use a cloned fd, to ensure that dup
84 remembers whether an fd was associated with a directory. */
85 if (!i)
86 {
87 int new_fd = dup (fd);
88 ASSERT (0 <= new_fd);
89 ASSERT (close (fd) == 0);
90 ASSERT (dup2 (new_fd, fd) == fd);
91 ASSERT (close (new_fd) == 0);
92 ASSERT (dup_cloexec (fd) == new_fd);
93 ASSERT (dup2 (new_fd, fd) == fd);
94 ASSERT (close (new_fd) == 0);
95 ASSERT (fcntl (fd, F_DUPFD_CLOEXEC, new_fd) == new_fd);
96 ASSERT (close (fd) == 0);
97 ASSERT (fcntl (new_fd, F_DUPFD, fd) == fd);
98 ASSERT (close (new_fd) == 0);
99#if GNULIB_TEST_DUP3
100 ASSERT (dup3 (fd, new_fd, 0) == new_fd);
101 ASSERT (dup3 (new_fd, fd, 0) == fd);
102 ASSERT (close (new_fd) == 0);
103#endif
104 }
105 }
106
107 free (cwd);
108 return 0;
109}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette