summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2015-11-05 10:26:03 -0500
committerEmmanuele Bassi <ebassi@gnome.org>2017-01-25 12:28:29 +0000
commit2aec628eb015b85ab08650289277de2af2b2efc4 (patch)
treef397040b6484589e2818ecdefece53c37cea8880 /test
parent5b9ddf129195bc26d035f7ec619e518e1810a8ac (diff)
downloadlibepoxy-2aec628eb015b85ab08650289277de2af2b2efc4.tar.gz
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 <ajax@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/dlwrap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dlwrap.c b/test/dlwrap.c
index 157590b..0009b83 100644
--- a/test/dlwrap.c
+++ b/test/dlwrap.c
@@ -233,7 +233,9 @@ dlwrap_real_dlsym(void *handle, const char *name)
* hard-coded version list as people report bugs. */
const char *version[] = {
"GLIBC_2.4",
+ "GLIBC_2.3",
"GLIBC_2.2.5",
+ "GLIBC_2.2",
"GLIBC_2.0"
};
int num_versions = sizeof(version) / sizeof(version[0]);