]> granicus.if.org Git - strace/blob - tests/utimes.c
Remove XLAT_END
[strace] / tests / utimes.c
1 /*
2  * Check decoding of utimes syscall.
3  *
4  * Copyright (c) 2015-2018 Dmitry V. Levin <ldv@altlinux.org>
5  * Copyright (c) 2016-2019 The strace developers.
6  * All rights reserved.
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10
11 #include "tests.h"
12 #include "scno.h"
13
14 #ifdef __NR_utimes
15
16 # define TEST_SYSCALL_NR        __NR_utimes
17 # define TEST_SYSCALL_STR       "utimes"
18 # define TEST_STRUCT            struct timeval
19 # include "xutimes.c"
20
21 #else
22
23 SKIP_MAIN_UNDEFINED("__NR_utimes")
24
25 #endif