diff options
author | Florian Weimer <fweimer@redhat.com> | 2022-07-25 09:39:22 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2022-07-25 11:39:03 +0200 |
commit | 0c5605989f72457b50e4eccad3e99a28929d89ba (patch) | |
tree | d529254ac393f566fa1b9d12e21cf3927453b9f7 /sysdeps/unix/sysv/linux/tst-readdir64-compat.c | |
parent | ca4d3ea5130d66e66c5af14e958e99341bf20689 (diff) | |
download | glibc-0c5605989f72457b50e4eccad3e99a28929d89ba.zip glibc-0c5605989f72457b50e4eccad3e99a28929d89ba.tar.gz glibc-0c5605989f72457b50e4eccad3e99a28929d89ba.tar.bz2 |
Linux: dirent/tst-readdir64-compat needs to use TEST_COMPAT (bug 27654)
The hppa port starts libc at GLIBC_2.2, but has earlier symbol
versions in other shared objects. This means that the compat
symbol for readdir64 is not actually present in libc even though
have-GLIBC_2.1.3 is defined as yes at the make level.
Fixes commit 15e50e6c966fa0f26612602a95f0129543d9f9d5 ("Linux:
dirent/tst-readdir64-compat can be a regular test") by mostly
reverting it.
Diffstat (limited to 'sysdeps/unix/sysv/linux/tst-readdir64-compat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/tst-readdir64-compat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/tst-readdir64-compat.c b/sysdeps/unix/sysv/linux/tst-readdir64-compat.c index e1f6166..1f1302e 100644 --- a/sysdeps/unix/sysv/linux/tst-readdir64-compat.c +++ b/sysdeps/unix/sysv/linux/tst-readdir64-compat.c @@ -37,12 +37,15 @@ struct __old_dirent64 typedef struct __old_dirent64 *(*compat_readdir64_type) (DIR *); +#if TEST_COMPAT (libc, GLIBC_2_1, GLIBC_2_2) struct __old_dirent64 *compat_readdir64 (DIR *); compat_symbol_reference (libc, compat_readdir64, readdir64, GLIBC_2_1); +#endif static int do_test (void) { +#if TEST_COMPAT (libc, GLIBC_2_1, GLIBC_2_2) /* Directory stream using the non-compat readdir64 symbol. The test checks against this. */ DIR *dir_reference = opendir ("."); @@ -104,6 +107,7 @@ do_test (void) TEST_COMPARE (closedir (dir_test), 0); TEST_COMPARE (closedir (dir_reference), 0); +#endif return 0; } |