mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
1b97a9f23b
Add a FAIL test failure helper analogous to FAIL_RET, that does not cause the current function to return, providing a standardized way to report a test failure with a message supplied while permitting the caller to continue executing, for further reporting, cleaning up, etc. Update existing test cases that provide a conflicting definition of FAIL by removing the local FAIL definition and then as follows: - tst-fortify-syslog: provide a meaningful message in addition to the file name already added by <support/check.h>; 'support_record_failure' is already called by 'support_print_failure_impl' invoked by the new FAIL test failure helper. - tst-ctype: no update to FAIL calls required, with the name of the file and the line number within of the failure site additionally included by the new FAIL test failure helper, and error counting plus count reporting upon test program termination also already provided by 'support_record_failure' and 'support_report_failure' respectively, called by 'support_print_failure_impl' and 'adjust_exit_status' also respectively. However in a number of places 'printf' is called and the error count adjusted by hand, so update these places to make use of FAIL instead. And last but not least adjust the final summary just to report completion, with any error count following as reported by the test driver. - test-tgmath2: no update to FAIL calls required, with the name of the file of the failure site additionally included by the new FAIL test failure helper. Also there is no need to track the return status by hand as any call to FAIL will eventually cause the test case to return an unsuccesful exit status regardless of the return status from the test function, via a call to 'adjust_exit_status' made by the test driver. Reviewed-by: DJ Delorie <dj@redhat.com>
123 lines
3.0 KiB
C
123 lines
3.0 KiB
C
/* Fortify tests for syslog interface.
|
|
Copyright (C) 2023-2024 Free Software Foundation, Inc.
|
|
Copyright The GNU Toolchain Authors.
|
|
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/>. */
|
|
|
|
#include <stdarg.h>
|
|
#include <setjmp.h>
|
|
#include <syslog.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include <support/check.h>
|
|
#include <support/support.h>
|
|
#include <support/capture_subprocess.h>
|
|
|
|
static const char *str2 = "F";
|
|
static char buf2[10] = "%s";
|
|
|
|
static volatile int chk_fail_ok;
|
|
static jmp_buf chk_fail_buf;
|
|
|
|
static void
|
|
handler (int sig)
|
|
{
|
|
if (chk_fail_ok)
|
|
{
|
|
chk_fail_ok = 0;
|
|
longjmp (chk_fail_buf, 1);
|
|
}
|
|
else
|
|
_exit (127);
|
|
}
|
|
|
|
#define CHK_FAIL_START \
|
|
chk_fail_ok = 1; \
|
|
if (! setjmp (chk_fail_buf)) \
|
|
{
|
|
#define CHK_FAIL_END \
|
|
chk_fail_ok = 0; \
|
|
FAIL ("not supposed to reach here"); \
|
|
}
|
|
|
|
static void
|
|
call_vsyslog (int priority, const char *format, ...)
|
|
{
|
|
va_list va;
|
|
va_start (va, format);
|
|
vsyslog (priority, format, va);
|
|
va_end (va);
|
|
}
|
|
|
|
static void
|
|
run_syslog_chk (void *closure)
|
|
{
|
|
int n1;
|
|
CHK_FAIL_START
|
|
syslog (LOG_USER | LOG_DEBUG, buf2, str2, &n1, str2, &n1);
|
|
CHK_FAIL_END
|
|
}
|
|
|
|
static void
|
|
run_vsyslog_chk (void *closure)
|
|
{
|
|
int n1;
|
|
CHK_FAIL_START
|
|
call_vsyslog (LOG_USER | LOG_DEBUG, buf2, str2, &n1, str2, &n1);
|
|
CHK_FAIL_END
|
|
}
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
set_fortify_handler (handler);
|
|
|
|
int n1, n2;
|
|
|
|
n1 = n2 = 0;
|
|
syslog (LOG_USER | LOG_DEBUG, "%s%n%s%n", str2, &n1, str2, &n2);
|
|
TEST_COMPARE (n1, 1);
|
|
TEST_COMPARE (n2, 2);
|
|
|
|
n1 = n2 = 0;
|
|
call_vsyslog (LOG_USER | LOG_DEBUG, "%s%n%s%n", str2, &n1, str2, &n2);
|
|
TEST_COMPARE (n1, 1);
|
|
TEST_COMPARE (n2, 2);
|
|
|
|
strcpy (buf2 + 2, "%n%s%n");
|
|
|
|
/* The wrapper tests need to be in a subprocess because the abort called by
|
|
printf does not unlock the internal syslog lock. */
|
|
{
|
|
struct support_capture_subprocess result
|
|
= support_capture_subprocess (run_syslog_chk, NULL);
|
|
support_capture_subprocess_check (&result, "syslog", 0, sc_allow_stderr);
|
|
support_capture_subprocess_free (&result);
|
|
}
|
|
|
|
{
|
|
struct support_capture_subprocess result
|
|
= support_capture_subprocess (run_vsyslog_chk, NULL);
|
|
support_capture_subprocess_check (&result, "syslog", 0, sc_allow_stderr);
|
|
support_capture_subprocess_free (&result);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#include <support/test-driver.c>
|