diff options
author | Lukasz Majewski <lukma@denx.de> | 2021-03-09 11:38:05 +0100 |
---|---|---|
committer | Lukasz Majewski <lukma@denx.de> | 2021-03-23 12:23:33 +0100 |
commit | d816bb448b10d50f0d3b5e01ef931d401fa9fcdc (patch) | |
tree | 4523febffe83f4beb1a4216109047d104a529c23 /sysdeps/unix/sysv/linux/tst-ntp_gettimex.c | |
parent | c0c926d00dc1664b0231a63eab6a08b8720f9985 (diff) | |
download | glibc-d816bb448b10d50f0d3b5e01ef931d401fa9fcdc.tar glibc-d816bb448b10d50f0d3b5e01ef931d401fa9fcdc.tar.gz glibc-d816bb448b10d50f0d3b5e01ef931d401fa9fcdc.tar.bz2 glibc-d816bb448b10d50f0d3b5e01ef931d401fa9fcdc.zip |
tst: Add test for ntp_gettimex
This test is a wrapper on tst-ntp_gettime test.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/tst-ntp_gettimex.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/tst-ntp_gettimex.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/tst-ntp_gettimex.c b/sysdeps/unix/sysv/linux/tst-ntp_gettimex.c new file mode 100644 index 0000000000..99bc3aaae0 --- /dev/null +++ b/sysdeps/unix/sysv/linux/tst-ntp_gettimex.c @@ -0,0 +1,21 @@ +/* Test for ntp_gettimex. + Copyright (C) 2021 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. */ + +#define NTP_GETTIME_SYSCALL ntp_gettimex + +#include <tst-ntp_gettime.c> |