]> granicus.if.org Git - strace/blobdiff - tests/futimesat.c
strace: terminate itself if interrupted by a signal
[strace] / tests / futimesat.c
index ae83988eca09e721e38fab392ce32f4690543686..661c6c3678791302a33d9bf0d7b104cd9047cfd4 100644 (file)
@@ -4,27 +4,7 @@
  * Copyright (c) 2015-2017 Dmitry V. Levin <ldv@altlinux.org>
  * All rights reserved.
  *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- * 3. The name of the author may not be used to endorse or promote products
- *    derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * SPDX-License-Identifier: GPL-2.0-or-later
  */
 
 #include "tests.h"
 static void
 print_tv(const struct timeval *tv)
 {
-       printf("{tv_sec=%ju, tv_usec=%ju}",
-              (uintmax_t) tv->tv_sec, (uintmax_t) tv->tv_usec);
+       printf("{tv_sec=%lld, tv_usec=%llu}",
+              (long long) tv->tv_sec,
+              zero_extend_signed_to_ull(tv->tv_usec));
+       print_time_t_usec(tv->tv_sec,
+                         zero_extend_signed_to_ull(tv->tv_usec), 1);
 }
 
 static const char *errstr;
@@ -112,6 +95,18 @@ main(void)
        printf("futimesat(AT_FDCWD, %s, %p) = %s\n",
               qname, tv + 2, errstr);
 
+       tv[0].tv_sec = 0xdeadbeefU;
+       tv[0].tv_usec = 0xfacefeedU;
+       tv[1].tv_sec = (time_t) 0xcafef00ddeadbeefLL;
+       tv[1].tv_usec = (suseconds_t) 0xbadc0dedfacefeedLL;
+
+       k_futimesat(kfdcwd, kfname, (uintptr_t) tv);
+       printf("futimesat(AT_FDCWD, %s, [", qname);
+       print_tv(&tv[0]);
+       printf(", ");
+       print_tv(&tv[1]);
+       printf("]) = %s\n", errstr);
+
        tv[0].tv_sec = 1492356708;
        tv[0].tv_usec = 567891234;
        tv[1].tv_sec = 1492357086;