1 /* Test changing the protections of a file.
2 Copyright (C) 2020 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 <https://www.gnu.org/licenses/>. */
21 #include "signature.h"
22 SIGNATURE_CHECK (lchmod
, int, (const char *, mode_t
));
31 #define BASE "test-lchmod."
36 /* Test that lchmod works on non-symlinks. */
40 ASSERT (close (creat (BASE
"file", 0600)) == 0);
41 ASSERT (lchmod (BASE
"file", 0400) == 0);
42 ASSERT (stat (BASE
"file", &statbuf
) >= 0);
43 ASSERT ((statbuf
.st_mode
& 0700) == 0400);
45 ASSERT (chmod (BASE
"file", 0600) == 0);
46 ASSERT (unlink (BASE
"file") == 0);
49 /* Test that lchmod on symlinks does not modify the symlink target. */
53 if (symlink (BASE
"file", BASE
"link") == 0)
56 ASSERT (close (creat (BASE
"file", 0600)) == 0);
57 lchmod (BASE
"link", 0400);
58 ASSERT (stat (BASE
"file", &statbuf
) >= 0);
59 ASSERT ((statbuf
.st_mode
& 0700) == 0600);