about summary refs log tree commit diff
path: root/elf/ifuncmain1.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2022-11-04 18:37:16 +0100
committerFlorian Weimer <fweimer@redhat.com>2022-11-04 18:46:22 +0100
commit9cc9d61ee12f2f8620d8e0ea3c42af02bf07fe1e (patch)
tree30e83b09e9d3088b4de446a1061daf6dace4e8c0 /elf/ifuncmain1.c
parent2ff48a4025515e93d722947a9eabb114f4a65b22 (diff)
downloadglibc-9cc9d61ee12f2f8620d8e0ea3c42af02bf07fe1e.tar.gz
glibc-9cc9d61ee12f2f8620d8e0ea3c42af02bf07fe1e.tar.xz
glibc-9cc9d61ee12f2f8620d8e0ea3c42af02bf07fe1e.zip
elf: Disable some subtests of ifuncmain1, ifuncmain5 for !PIE
Diffstat (limited to 'elf/ifuncmain1.c')
-rw-r--r--elf/ifuncmain1.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/elf/ifuncmain1.c b/elf/ifuncmain1.c
index 747fc02648..6effce3d77 100644
--- a/elf/ifuncmain1.c
+++ b/elf/ifuncmain1.c
@@ -19,7 +19,14 @@ typedef int (*foo_p) (void);
 #endif
 
 foo_p foo_ptr = foo;
+
+/* Address-significant access to protected symbols is not supported in
+   position-dependent mode on several architectures because GCC
+   generates relocations that assume that the address is local to the
+   main program.  */
+#ifdef __PIE__
 foo_p foo_procted_ptr = foo_protected;
+#endif
 
 extern foo_p get_foo_p (void);
 extern foo_p get_foo_hidden_p (void);
@@ -37,12 +44,16 @@ main (void)
   if ((*foo_ptr) () != -1)
     abort ();
 
+#ifdef __PIE__
   if (foo_procted_ptr != foo_protected)
     abort ();
+#endif
   if (foo_protected () != 0)
     abort ();
+#ifdef __PIE__
   if ((*foo_procted_ptr) () != 0)
     abort ();
+#endif
 
   p = get_foo_p ();
   if (p != foo)
@@ -55,8 +66,10 @@ main (void)
     abort ();
 
   p = get_foo_protected_p ();
+#ifdef __PIE__
   if (p != foo_protected)
     abort ();
+#endif
   if (ret_foo_protected != 0 || (*p) () != ret_foo_protected)
     abort ();