aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-audit16.c
diff options
context:
space:
mode:
authorStafford Horne <shorne@gmail.com>2021-10-06 08:30:38 +0900
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-10-12 13:25:43 -0300
commit171ab1af562836dd9c56756922efb69eafa9eb5c (patch)
tree6059cb794604bc64859f82ac4a466fbfc9061c5a /elf/tst-audit16.c
parent4af6982e4c9fc465ffb7a54b794aaaa134241f05 (diff)
downloadglibc-171ab1af562836dd9c56756922efb69eafa9eb5c.zip
glibc-171ab1af562836dd9c56756922efb69eafa9eb5c.tar.gz
glibc-171ab1af562836dd9c56756922efb69eafa9eb5c.tar.bz2
elf: Update audit tests to not depend on stdout
The tst-audit14, tst-audit15 and tst-audit16 tests all have audit modules that write to stdout; the test reads from stdout to confirm what was written. This assumes the stdout is a file which is not the case when run over ssh. This patch updates the tests to use a post run cmp command to compare the output against and .exp file. This is similar to how many other tests work and it fixes the stdout limitation. Also, this means the test code can be greatly simplified. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'elf/tst-audit16.c')
-rw-r--r--elf/tst-audit16.c55
1 files changed, 1 insertions, 54 deletions
diff --git a/elf/tst-audit16.c b/elf/tst-audit16.c
index 168a294..c6232ea 100644
--- a/elf/tst-audit16.c
+++ b/elf/tst-audit16.c
@@ -1,54 +1 @@
-/* Main program with DT_AUDIT and DT_DEPAUDIT. Three audit modules.
- Copyright (C) 2020-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/>. */
-
-#include <stdlib.h>
-#include <string.h>
-#include <support/check.h>
-#include <support/xstdio.h>
-
-static int
-do_test (void)
-{
- /* Verify what the audit modules have written. This test assumes
- that standard output has been redirected to a regular file. */
- FILE *fp = xfopen ("/dev/stdout", "r");
-
- char *buffer = NULL;
- size_t buffer_length = 0;
- size_t line_length = xgetline (&buffer, &buffer_length, fp);
- const char *message = "info: tst-auditlogmod-1.so loaded\n";
- TEST_COMPARE_BLOB (message, strlen (message), buffer, line_length);
-
- line_length = xgetline (&buffer, &buffer_length, fp);
- message = "info: tst-auditlogmod-2.so loaded\n";
- TEST_COMPARE_BLOB (message, strlen (message), buffer, line_length);
-
- line_length = xgetline (&buffer, &buffer_length, fp);
- message = "info: tst-auditlogmod-3.so loaded\n";
- TEST_COMPARE_BLOB (message, strlen (message), buffer, line_length);
-
- /* No more audit module output. */
- line_length = xgetline (&buffer, &buffer_length, fp);
- TEST_COMPARE_BLOB ("", 0, buffer, line_length);
-
- free (buffer);
- xfclose (fp);
- return 0;
-}
-
-#include <support/test-driver.c>
+#include "tst-audit14.c"