1 /* Copyright (C) 1994-2023 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 <https://www.gnu.org/licenses/>. */
28 main (int argc
, char *argv
[])
30 char file
[] = "/tmp/test-utime.XXXXXX";
45 /* Test utime with arg */
46 ut
.actime
= 500000000;
47 ut
.modtime
= 500000001;
48 if (utime (file
, &ut
))
62 /* Test utime with NULL.
63 Since there's a race condition possible here, we check
64 the time before and after the call to utime. */
66 if (now1
== (time_t)-1)
73 /* The clocks used to set the modification time and that used in the
74 time() call need not be the same. They need not have the same
75 precision. Therefore we delay the following operation by one
76 second which makes sure we can compare with second precision. */
79 if (utime (file
, NULL
))
81 perror ("utime NULL");
89 if (now2
== (time_t)-1)
96 if (stat (file
, &stnow
))
105 if (st
.st_mtime
!= ut
.modtime
)
107 printf ("modtime %jd != %jd\n",
108 (intmax_t) st
.st_mtime
, (intmax_t) ut
.modtime
);
112 if (st
.st_atime
!= ut
.actime
)
114 printf ("actime %jd != %jd\n",
115 (intmax_t) st
.st_atime
, (intmax_t) ut
.actime
);
119 if (stnow
.st_mtime
< now1
|| stnow
.st_mtime
> now2
)
121 printf ("modtime %jd <%jd >%jd\n",
122 (intmax_t) stnow
.st_mtime
, (intmax_t) now1
, (intmax_t) now2
);
126 if (stnow
.st_atime
< now1
|| stnow
.st_atime
> now2
)
128 printf ("actime %jd <%jd >%jd\n",
129 (intmax_t) stnow
.st_atime
, (intmax_t) now1
, (intmax_t) now2
);
133 puts ("Test succeeded.");