From ce5afcca4648b34e2ce9f7804a5444f81d94e07d Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 5 Nov 2015 10:26:03 -0500 Subject: [PATCH] test: Fix dlwrap on ppc64 and s390x These have dlsym versions of GLIBC_2.3 and GLIBC_2.2, respectively. Signed-off-by: Adam Jackson --- test/dlwrap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/dlwrap.c b/test/dlwrap.c index b104da4..9d1add5 100644 --- a/test/dlwrap.c +++ b/test/dlwrap.c @@ -232,7 +232,9 @@ dlwrap_real_dlsym(void *handle, const char *name) * In the meantime, I'll just keep augmenting this * hard-coded version list as people report bugs. */ const char *version[] = { + "GLIBC_2.3", "GLIBC_2.2.5", + "GLIBC_2.2", "GLIBC_2.0" }; int num_versions = sizeof(version) / sizeof(version[0]); -- 2.9.3