]> granicus.if.org Git - strace/blob - tests/utimensat.c
tests: use fixed timestamps in utime related tests
[strace] / tests / utimensat.c
1 /*
2  * This file is part of utimensat strace test.
3  *
4  * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include "tests.h"
31 #include <assert.h>
32 #include <errno.h>
33 #include <fcntl.h>
34 #include <stdint.h>
35 #include <stdio.h>
36 #include <sys/stat.h>
37 #include <sys/time.h>
38
39 #if defined HAVE_UTIMENSAT \
40  && defined AT_FDCWD && defined AT_SYMLINK_NOFOLLOW \
41  && defined UTIME_NOW && defined UTIME_OMIT
42
43 static void
44 print_ts(const struct timespec *ts)
45 {
46         printf("{tv_sec=%ju, tv_nsec=%ju}", (uintmax_t) ts->tv_sec,
47                 (uintmax_t) ts->tv_nsec);
48 }
49
50 int
51 main(void)
52 {
53         static const char fname[] = "utimensat\nfilename";
54
55         assert(utimensat(AT_FDCWD, fname, NULL, 0) == -1);
56         if (ENOENT != errno)
57                 error_msg_and_skip("utimensat");
58
59         #define PREFIX "utimensat(AT_FDCWD, \"utimensat\\nfilename\", "
60         printf(PREFIX "NULL, 0) = -1 ENOENT (%m)\n");
61
62         struct timespec ts[2];
63         ts[0].tv_sec = 1492358706;
64         ts[0].tv_nsec = 123456789;
65         ts[1].tv_sec = 1492357068;
66         ts[1].tv_nsec = 234567890;
67
68         printf(PREFIX "[");
69         print_ts(&ts[0]);
70         printf(", ");
71         print_ts(&ts[1]);
72         printf("], AT_SYMLINK_NOFOLLOW) = -1 ENOENT ");
73
74         assert(utimensat(AT_FDCWD, fname, ts, AT_SYMLINK_NOFOLLOW) == -1);
75         if (ENOENT != errno)
76                 error_msg_and_skip("utimensat");
77         printf("(%m)\n");
78
79         ts[0].tv_nsec = UTIME_NOW;
80         ts[1].tv_nsec = UTIME_OMIT;
81         assert(utimensat(AT_FDCWD, fname, ts, AT_SYMLINK_NOFOLLOW) == -1);
82         if (ENOENT != errno)
83                 error_msg_and_skip("utimensat");
84         printf(PREFIX "[UTIME_NOW, UTIME_OMIT], AT_SYMLINK_NOFOLLOW)"
85                " = -1 ENOENT (%m)\n");
86
87         puts("+++ exited with 0 +++");
88         return 0;
89 }
90
91 #else
92
93 SKIP_MAIN_UNDEFINED("HAVE_UTIMENSAT && AT_FDCWD && AT_SYMLINK_NOFOLLOW"
94                     " && UTIME_NOW && UTIME_OMIT")
95
96 #endif