1 /* Test of creating a file.
2 Copyright (C) 2007-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 (creat
, int, (const char *, mode_t
));
30 #define BASE "test-creat.t"
37 /* Remove anything from prior partial run. */
39 unlink (BASE
"e.exe");
41 /* Cannot create directory. */
43 ASSERT (creat ("nonexist.ent/", 0600) == -1);
44 ASSERT (errno
== ENOTDIR
|| errno
== EISDIR
|| errno
== ENOENT
47 /* Create a regular file. */
48 fd
= creat (BASE
"file", 0600);
50 ASSERT (close (fd
) == 0);
52 /* Create an executable regular file. */
53 fd
= creat (BASE
"e.exe", 0700);
55 ASSERT (close (fd
) == 0);
58 ASSERT (unlink (BASE
"file") == 0);
59 ASSERT (unlink (BASE
"e.exe") == 0);