Update copyright dates with scripts/update-copyrights.
[glibc.git] / io / test-utime.c
blob085926cb080d2fa55121cfcaba953b8978a78928
1 /* Copyright (C) 1994-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library 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 GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <fcntl.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <sys/stat.h>
22 #include <unistd.h>
23 #include <utime.h>
24 #include <time.h>
26 int
27 main (int argc, char *argv[])
29 char file[L_tmpnam];
30 struct utimbuf ut;
31 struct stat st;
32 struct stat stnow;
33 time_t now1, now2;
34 int fd;
36 if (tmpnam (file) == 0)
38 perror ("tmpnam");
39 return 1;
42 fd = creat (file, 0666);
43 if (fd < 0)
45 perror ("creat");
46 return 1;
48 close (fd);
50 /* Test utime with arg */
51 ut.actime = 500000000;
52 ut.modtime = 500000001;
53 if (utime (file, &ut))
55 perror ("utime");
56 remove (file);
57 return 1;
60 if (stat (file, &st))
62 perror ("stat");
63 remove (file);
64 return 1;
67 /* Test utime with NULL.
68 Since there's a race condition possible here, we check
69 the time before and after the call to utime. */
70 now1 = time (NULL);
71 if (now1 == (time_t)-1)
73 perror ("time");
74 remove (file);
75 return 1;
78 /* The clocks used to set the modification time and that used in the
79 time() call need not be the same. They need not have the same
80 precision. Therefore we delay the following operation by one
81 second which makes sure we can compare with second precision. */
82 sleep (1);
84 if (utime (file, NULL))
86 perror ("utime NULL");
87 remove (file);
88 return 1;
91 sleep (1);
93 now2 = time (NULL);
94 if (now2 == (time_t)-1)
96 perror ("time");
97 remove (file);
98 return 1;
101 if (stat (file, &stnow))
103 perror ("stat");
104 remove (file);
105 return 1;
108 remove (file);
110 if (st.st_mtime != ut.modtime)
112 printf ("modtime %jd != %jd\n",
113 (intmax_t) st.st_mtime, (intmax_t) ut.modtime);
114 return 1;
117 if (st.st_atime != ut.actime)
119 printf ("actime %jd != %jd\n",
120 (intmax_t) st.st_atime, (intmax_t) ut.actime);
121 return 1;
124 if (stnow.st_mtime < now1 || stnow.st_mtime > now2)
126 printf ("modtime %jd <%jd >%jd\n",
127 (intmax_t) stnow.st_mtime, (intmax_t) now1, (intmax_t) now2);
128 return 1;
131 if (stnow.st_atime < now1 || stnow.st_atime > now2)
133 printf ("actime %jd <%jd >%jd\n",
134 (intmax_t) stnow.st_atime, (intmax_t) now1, (intmax_t) now2);
135 return 1;
138 puts ("Test succeeded.");
139 return 0;