2016-12-28 12:37:18 +00:00
|
|
|
/* Global test failure counter.
|
2025-01-01 18:14:45 +00:00
|
|
|
Copyright (C) 2016-2025 Free Software Foundation, Inc.
|
2016-12-28 12:37:18 +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/>. */
|
2016-12-28 12:37:18 +00:00
|
|
|
|
|
|
|
#include <support/check.h>
|
|
|
|
#include <support/support.h>
|
|
|
|
#include <support/test-driver.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
/* This structure keeps track of test failures. The counter is
|
|
|
|
incremented on each failure. The failed member is set to true if a
|
|
|
|
failure is detected, so that even if the counter wraps around to
|
|
|
|
zero, the failure of a test can be detected.
|
|
|
|
|
|
|
|
The init constructor function below puts *state on a shared
|
2023-05-20 13:37:47 +00:00
|
|
|
anonymous mapping, so that failure reports from subprocesses
|
2016-12-28 12:37:18 +00:00
|
|
|
propagate to the parent process. */
|
|
|
|
struct test_failures
|
|
|
|
{
|
2016-12-31 11:20:49 +00:00
|
|
|
unsigned int counter;
|
|
|
|
unsigned int failed;
|
2016-12-28 12:37:18 +00:00
|
|
|
};
|
|
|
|
static struct test_failures *state;
|
|
|
|
|
|
|
|
static __attribute__ ((constructor)) void
|
|
|
|
init (void)
|
|
|
|
{
|
|
|
|
void *ptr = mmap (NULL, sizeof (*state), PROT_READ | PROT_WRITE,
|
|
|
|
MAP_ANONYMOUS | MAP_SHARED, -1, 0);
|
|
|
|
if (ptr == MAP_FAILED)
|
|
|
|
{
|
|
|
|
printf ("error: could not map %zu bytes: %m\n", sizeof (*state));
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
/* Zero-initialization of the struct is sufficient. */
|
|
|
|
state = ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
support_record_failure (void)
|
|
|
|
{
|
|
|
|
if (state == NULL)
|
|
|
|
{
|
|
|
|
write_message
|
|
|
|
("error: support_record_failure called without initialization\n");
|
|
|
|
_exit (1);
|
|
|
|
}
|
|
|
|
/* Relaxed MO is sufficient because we are only interested in the
|
|
|
|
values themselves, in isolation. */
|
|
|
|
__atomic_store_n (&state->failed, 1, __ATOMIC_RELEASE);
|
|
|
|
__atomic_add_fetch (&state->counter, 1, __ATOMIC_RELEASE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
support_report_failure (int status)
|
|
|
|
{
|
|
|
|
if (state == NULL)
|
|
|
|
{
|
|
|
|
write_message
|
|
|
|
("error: support_report_failure called without initialization\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Relaxed MO is sufficient because acquire test result reporting
|
|
|
|
assumes that exiting from the main thread happens before the
|
|
|
|
error reporting via support_record_failure, which requires some
|
|
|
|
form of external synchronization. */
|
|
|
|
bool failed = __atomic_load_n (&state->failed, __ATOMIC_RELAXED);
|
|
|
|
if (failed)
|
|
|
|
printf ("error: %u test failures\n",
|
|
|
|
__atomic_load_n (&state->counter, __ATOMIC_RELAXED));
|
|
|
|
|
|
|
|
if ((status == 0 || status == EXIT_UNSUPPORTED) && failed)
|
|
|
|
/* If we have a recorded failure, it overrides a non-failure
|
|
|
|
report from the test function. */
|
|
|
|
status = 1;
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
support_record_failure_reset (void)
|
|
|
|
{
|
|
|
|
/* Only used for testing the test framework, with external
|
|
|
|
synchronization, but use release MO for consistency. */
|
|
|
|
__atomic_store_n (&state->failed, 0, __ATOMIC_RELAXED);
|
|
|
|
__atomic_add_fetch (&state->counter, 0, __ATOMIC_RELAXED);
|
|
|
|
}
|
2018-12-06 14:39:42 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
support_record_failure_is_failed (void)
|
|
|
|
{
|
|
|
|
/* Relaxed MO is sufficient because we need (blocking) external
|
|
|
|
synchronization for reliable test error reporting anyway. */
|
|
|
|
return __atomic_load_n (&state->failed, __ATOMIC_RELAXED);
|
|
|
|
}
|
2024-12-23 12:57:55 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
support_record_failure_barrier (void)
|
|
|
|
{
|
|
|
|
if (__atomic_load_n (&state->failed, __ATOMIC_RELAXED))
|
|
|
|
{
|
|
|
|
puts ("error: exiting due to previous errors");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
}
|