This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Verify run-time size relocations if supported


Hi,

I checked in this patch to add 2 run-time size relocation tests.


H.J.
---
	* ld-size/size-7.out: New file.
	* ld-size/size-8.out: Likewise.
	* ld-size/size-9.out: Likewise.
	* ld-size/size-9.rd: Likewise.
	* ld-size/size-9a.c: Likewise.
	* ld-size/size-9b.c: Likewise.
	* ld-size/size-10.out: Likewise.
	* ld-size/size-10.rd: Likewise.
	* ld-size/size-10a.c: Likewise.
	* ld-size/size-10b.c: Likewise.

	* ld-size/size.exp (build_tests): Build libsize-9.so and
	libsize-10.so.
	Run-time size relocation tests if supported.
	(run_time_tests): New.

diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-10a.c /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-10a.c
--- ld-size/size-10a.c	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-10a.c	2013-01-17 14:02:12.756035857 -0800
@@ -0,0 +1,14 @@
+#include <stdio.h>
+
+extern int bar_size;
+extern char *get_bar (int, int);
+
+int
+main ()
+{
+  char *bar = get_bar (2, 20);
+  if (bar_size == 10 && bar[2] == 20)
+    printf ("OK\n");
+
+  return 0;
+}
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-10b.c /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-10b.c
--- ld-size/size-10b.c	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-10b.c	2013-01-17 14:59:35.640970567 -0800
@@ -0,0 +1,10 @@
+__thread char bar[10];
+extern char size_of_bar asm ("bar@SIZE");
+char *bar_size = &size_of_bar;
+
+char *
+get_bar (int i, int v)
+{
+  bar[i] = v;
+  return bar;
+}
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-10.out /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-10.out
--- ld-size/size-10.out	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-10.out	2013-01-17 13:56:42.375017620 -0800
@@ -0,0 +1 @@
+OK
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-10.rd /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-10.rd
--- ld-size/size-10.rd	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-10.rd	2013-01-17 13:57:09.607852897 -0800
@@ -0,0 +1,3 @@
+#...
+[0-9a-f]+ +[0-9a-f]+ +R_.*_SIZE(32|64) +.*
+#pass
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-7.out /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-7.out
--- ld-size/size-7.out	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-7.out	2013-01-17 15:56:51.848084186 -0800
@@ -0,0 +1 @@
+OK
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-8.out /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-8.out
--- ld-size/size-8.out	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-8.out	2013-01-17 10:10:32.680497233 -0800
@@ -0,0 +1 @@
+OK
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-9a.c /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-9a.c
--- ld-size/size-9a.c	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-9a.c	2013-01-17 16:11:03.913226097 -0800
@@ -0,0 +1,13 @@
+#include <stdio.h>
+
+char bar[20];
+extern int bar_size;
+
+int
+main ()
+{
+  if (bar_size == 20)
+    printf ("OK\n");
+
+  return 0;
+}
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-9b.c /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-9b.c
--- ld-size/size-9b.c	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-9b.c	2013-01-17 16:08:53.800958169 -0800
@@ -0,0 +1,3 @@
+char bar[10];
+extern char size_of_bar asm ("bar@SIZE");
+char *bar_size = &size_of_bar;
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-9.out /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-9.out
--- ld-size/size-9.out	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-9.out	2013-01-17 13:45:03.316124690 -0800
@@ -0,0 +1 @@
+OK
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size-9.rd /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-9.rd
--- ld-size/size-9.rd	1969-12-31 16:00:00.000000000 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size-9.rd	2013-01-17 13:38:13.798558165 -0800
@@ -0,0 +1,3 @@
+#...
+[0-9a-f]+ +[0-9a-f]+ +R_.*_SIZE(32|64) +.*
+#pass
diff -N -upr -x ChangeLog.hjl -x CVS ld-size/size.exp /export/gnu/import/git/binutils/ld/testsuite/ld-size/size.exp
--- ld-size/size.exp	2013-01-17 16:01:19.225547695 -0800
+++ /export/gnu/import/git/binutils/ld/testsuite/ld-size/size.exp	2013-01-17 16:04:46.259370078 -0800
@@ -85,6 +85,12 @@ set build_tests {
   {"Build size-8"
    "tmpdir/libsize-8.so" ""
    {size-8a.c} {{readelf -rW size-8.rd}} "size-8.exe"}
+  {"Build libsize-9.so"
+   "-shared" "-fPIC"
+   {size-9b.c} {{readelf -rW size-9.rd}} "libsize-9.so"}
+  {"Build libsize-10.so"
+   "-shared" "-fPIC"
+   {size-10b.c} {{readelf -rW size-10.rd}} "libsize-10.so"}
 }
 
 run_cc_link_tests $build_tests
@@ -132,3 +138,32 @@ set run_tests {
 }
 
 run_ld_link_exec_tests [] $run_tests
+
+# Check if size relocation works at run-time.
+catch "exec tmpdir/size-7.exe > tmpdir/dump.out" exec_output
+if ![string match "" $exec_output] then {
+    send_log "No run-time size relocation support: $exec_output\n"
+    verbose "No run-time size relocation support: $exec_output" 1
+    return
+}
+
+if { [regexp_diff "tmpdir/dump.out" "$srcdir/$subdir/size-7.out" ] } then {
+    verbose "output is [file_contents "tmpdir/dump.out"]" 2
+    fail "Run-time size relocation"
+    return
+}
+
+# Run-time size relocation tests.
+set run_time_tests {
+    {"Run size-8"
+     "tmpdir/libsize-8.so" ""
+     {size-8a.c} "size-8" "size-8.out"}
+    {"Run size-9"
+     "tmpdir/libsize-9.so" ""
+     {size-9a.c} "size-9" "size-9.out"}
+    {"Run size-10"
+     "tmpdir/libsize-10.so" ""
+     {size-10a.c} "size-10" "size-10.out"}
+}
+
+run_ld_link_exec_tests [] $run_time_tests


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]