spawn: Use special invocation for <spawn.h> on OS/2 kLIBC.
[gnulib.git] / tests / test-getumask.c
blobca819bd9f7bde2e7e2b974c97687ed9910c17144
1 /* Test of retrieving the umask of the process.
2 Copyright (C) 2020-2021 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/>. */
17 /* Written by Bruno Haible. */
19 #include <config.h>
21 #include <sys/stat.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (getumask, mode_t, (void));
26 #include "macros.h"
28 int
29 main (void)
31 int mask;
33 mask = getumask ();
34 ASSERT (mask >= 0);
36 #if !ASSUME_UMASK_CONSTANT
37 /* These tests fail if the umask is required to not change. */
39 umask (002);
41 mask = getumask ();
42 ASSERT (mask == 002);
44 umask (077);
46 mask = getumask ();
47 ASSERT (mask == 077);
49 #endif
51 return 0;