1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

malloc: Turn tst-mallocstate into a non-internal test

compat_symbol_reference no longer needs tests-internal.  Do not build
the test at all for newer targets, so that no spurious UNSUPPORTED
result is generated.  Use compat_symbol_reference for
__malloc_initialize_hook as well, eliminating the need for -rdynamic.

Reviewed-by: DJ Delorie <dj@redhat.com>
This commit is contained in:
Florian Weimer
2021-03-09 21:07:24 +01:00
parent 36f6e40884
commit 178c0e48c3
2 changed files with 8 additions and 13 deletions

View File

@@ -29,8 +29,6 @@
#include "malloc.h"
#if TEST_COMPAT (libc, GLIBC_2_0, GLIBC_2_25)
/* Make the compatibility symbols availabile to this test case. */
void *malloc_get_state (void);
compat_symbol_reference (libc, malloc_get_state, malloc_get_state, GLIBC_2_0);
@@ -310,6 +308,8 @@ init_heap (void)
/* Interpose the initialization callback. */
void (*volatile __malloc_initialize_hook) (void) = init_heap;
compat_symbol_reference (libc, __malloc_initialize_hook,
__malloc_initialize_hook, GLIBC_2_0);
/* Simulate occasional unrelated heap activity in the non-dumped
heap. */
@@ -490,12 +490,5 @@ do_test (void)
return errors;
}
#else
static int
do_test (void)
{
return 77;
}
#endif
#include <support/test-driver.c>