spawn: Use special invocation for <spawn.h> on OS/2 kLIBC.
[gnulib.git] / tests / test-supersede.c
blob025e5e16e23a1fbd7f89fa06e9393cce774c7e06
1 /* Tests for opening a file without destroying an old file with the same name.
3 Copyright (C) 2020-2021 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Written by Bruno Haible, 2020. */
20 #include <config.h>
22 /* Specification. */
23 #include "supersede.h"
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <stdbool.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/stat.h>
31 #include <unistd.h>
33 #include "filenamecat.h"
34 #include "read-file.h"
35 #include "macros.h"
37 /* The name of the "always silent" device. */
38 #if defined _WIN32 && ! defined __CYGWIN__
39 /* Native Windows API. */
40 # define DEV_NULL "NUL"
41 #else
42 /* Unix API. */
43 # define DEV_NULL "/dev/null"
44 #endif
46 #include "test-supersede-open.h"
47 #include "test-supersede-fopen.h"
49 int
50 main (void)
52 test_open_supersede (false, false);
53 test_open_supersede (false, true);
54 test_open_supersede (true, false);
55 test_open_supersede (true, true);
57 test_fopen_supersede (false, false);
58 test_fopen_supersede (false, true);
59 test_fopen_supersede (true, false);
60 test_fopen_supersede (true, true);
62 return 0;