2019-05-09 17:19:21 +00:00
|
|
|
/* Support code for timespec checks.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2019-2024 Free Software Foundation, Inc.
|
2019-05-09 17:19:21 +00:00
|
|
|
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
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2019-05-09 17:19:21 +00:00
|
|
|
|
|
|
|
#include <support/timespec.h>
|
|
|
|
#include <stdio.h>
|
2019-05-10 12:35:18 +00:00
|
|
|
#include <stdint.h>
|
2020-07-10 22:41:06 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <intprops.h>
|
2019-05-09 17:19:21 +00:00
|
|
|
|
|
|
|
void
|
2021-02-25 19:57:25 +00:00
|
|
|
test_timespec_before_impl (const char *file, int line, struct timespec left,
|
|
|
|
struct timespec right)
|
2019-05-09 17:19:21 +00:00
|
|
|
{
|
|
|
|
if (left.tv_sec > right.tv_sec
|
|
|
|
|| (left.tv_sec == right.tv_sec
|
|
|
|
&& left.tv_nsec > right.tv_nsec)) {
|
|
|
|
support_record_failure ();
|
|
|
|
const struct timespec diff = timespec_sub (left, right);
|
2019-05-10 12:35:18 +00:00
|
|
|
printf ("%s:%d: %jd.%09jds not before %jd.%09jds "
|
2019-05-20 17:56:48 +00:00
|
|
|
"(difference %jd.%09jds)\n",
|
2019-05-09 17:19:21 +00:00
|
|
|
file, line,
|
2019-05-10 12:35:18 +00:00
|
|
|
(intmax_t) left.tv_sec, (intmax_t) left.tv_nsec,
|
|
|
|
(intmax_t) right.tv_sec, (intmax_t) right.tv_nsec,
|
|
|
|
(intmax_t) diff.tv_sec, (intmax_t) diff.tv_nsec);
|
2019-05-09 17:19:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
test_timespec_equal_or_after_impl (const char *file, int line,
|
2021-02-25 19:57:25 +00:00
|
|
|
struct timespec left,
|
|
|
|
struct timespec right)
|
2019-05-09 17:19:21 +00:00
|
|
|
{
|
|
|
|
if (left.tv_sec < right.tv_sec
|
|
|
|
|| (left.tv_sec == right.tv_sec
|
|
|
|
&& left.tv_nsec < right.tv_nsec)) {
|
|
|
|
support_record_failure ();
|
|
|
|
const struct timespec diff = timespec_sub (right, left);
|
2019-05-10 12:35:18 +00:00
|
|
|
printf ("%s:%d: %jd.%09jds not after %jd.%09jds "
|
2019-05-20 17:56:48 +00:00
|
|
|
"(difference %jd.%09jds)\n",
|
2019-05-09 17:19:21 +00:00
|
|
|
file, line,
|
2019-05-10 12:35:18 +00:00
|
|
|
(intmax_t) left.tv_sec, (intmax_t) left.tv_nsec,
|
|
|
|
(intmax_t) right.tv_sec, (intmax_t) right.tv_nsec,
|
|
|
|
(intmax_t) diff.tv_sec, (intmax_t) diff.tv_nsec);
|
2019-05-09 17:19:21 +00:00
|
|
|
}
|
|
|
|
}
|
2020-07-10 22:41:06 +00:00
|
|
|
|
2020-07-13 23:15:56 +00:00
|
|
|
/* Convert TIME to nanoseconds stored in a time_t.
|
|
|
|
Returns time_t maximum or minimum if the conversion overflows
|
2020-07-10 22:41:06 +00:00
|
|
|
or underflows, respectively. */
|
2020-07-13 23:15:56 +00:00
|
|
|
time_t
|
2020-07-10 22:41:06 +00:00
|
|
|
support_timespec_ns (struct timespec time)
|
|
|
|
{
|
2020-07-13 23:15:56 +00:00
|
|
|
time_t time_ns;
|
2020-07-10 22:41:06 +00:00
|
|
|
if (INT_MULTIPLY_WRAPV(time.tv_sec, TIMESPEC_HZ, &time_ns))
|
2020-07-13 23:15:56 +00:00
|
|
|
return time.tv_sec < 0 ? TYPE_MINIMUM(time_t) : TYPE_MAXIMUM(time_t);
|
2020-07-10 22:41:06 +00:00
|
|
|
if (INT_ADD_WRAPV(time_ns, time.tv_nsec, &time_ns))
|
2020-07-13 23:15:56 +00:00
|
|
|
return time.tv_nsec < 0 ? TYPE_MINIMUM(time_t) : TYPE_MAXIMUM(time_t);
|
2020-07-10 22:41:06 +00:00
|
|
|
return time_ns;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns time normalized timespec with .tv_nsec < TIMESPEC_HZ
|
|
|
|
and the whole seconds added to .tv_sec. If an overflow or
|
|
|
|
underflow occurs the values are clamped to its maximum or
|
|
|
|
minimum respectively. */
|
|
|
|
struct timespec
|
|
|
|
support_timespec_normalize (struct timespec time)
|
|
|
|
{
|
|
|
|
struct timespec norm;
|
|
|
|
if (INT_ADD_WRAPV (time.tv_sec, (time.tv_nsec / TIMESPEC_HZ), &norm.tv_sec))
|
|
|
|
{
|
|
|
|
norm.tv_sec = (time.tv_nsec < 0) ? TYPE_MINIMUM (time_t): TYPE_MAXIMUM (time_t);
|
|
|
|
norm.tv_nsec = (time.tv_nsec < 0) ? -1 * (TIMESPEC_HZ - 1) : TIMESPEC_HZ - 1;
|
|
|
|
return norm;
|
|
|
|
}
|
|
|
|
norm.tv_nsec = time.tv_nsec % TIMESPEC_HZ;
|
|
|
|
return norm;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns TRUE if the observed time is within the given percentage
|
|
|
|
bounds of the expected time, and FALSE otherwise.
|
|
|
|
For example the call
|
|
|
|
|
|
|
|
support_timespec_check_in_range(expected, observed, 0.5, 1.2);
|
|
|
|
|
|
|
|
will check if
|
|
|
|
|
|
|
|
0.5 of expected <= observed <= 1.2 of expected
|
|
|
|
|
|
|
|
In other words it will check if observed time is within 50% to
|
|
|
|
120% of the expected time. */
|
|
|
|
int
|
|
|
|
support_timespec_check_in_range (struct timespec expected, struct timespec observed,
|
|
|
|
double lower_bound, double upper_bound)
|
|
|
|
{
|
|
|
|
assert (upper_bound >= lower_bound);
|
2020-07-13 23:15:56 +00:00
|
|
|
time_t expected_norm, observed_norm;
|
2020-07-10 22:41:06 +00:00
|
|
|
expected_norm = support_timespec_ns (expected);
|
|
|
|
/* Don't divide by zero */
|
|
|
|
assert(expected_norm != 0);
|
|
|
|
observed_norm = support_timespec_ns (observed);
|
|
|
|
double ratio = (double)observed_norm / expected_norm;
|
|
|
|
return (lower_bound <= ratio && ratio <= upper_bound);
|
|
|
|
}
|