public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* RFA: minor fixes to readelf
@ 2008-09-26  0:24 Tom Tromey
  2008-09-26  4:31 ` Alan Modra
  0 siblings, 1 reply; 7+ messages in thread
From: Tom Tromey @ 2008-09-26  0:24 UTC (permalink / raw)
  To: binutils

I noticed a few output oddities with readelf -w.  This patch fixes all
of them.

* Some places print "Contents of the %s section" and some print "The
  section %s contains".  I made them uniform; this is nicer for
  grepping.

* The debug_pubnames indexes are printed in decimal while other
  indexes use hex.  I changed this to use hex, for easier searching.
  I also removed an extra tab.

* I fixed the indentation of the aranges output.

This required a minor test suite change.

Ok?

Tom

ChangeLog:
2008-09-25  Tom Tromey  <tromey@redhat.com>

	* dwarf.c (display_debug_frames): Change text for uniformity.
	(process_debug_info): Likewise.
	(display_debug_aranges): Likewise.  Indent address output.
	(display_debug_pubnames): Print offset in hex.

testsuite/ChangeLog:
2008-09-25  Tom Tromey  <tromey@redhat.com>

	* binutils-all/objdump.W: Update.

Index: dwarf.c
===================================================================
RCS file: /cvs/src/src/binutils/dwarf.c,v
retrieving revision 1.40
diff -u -r1.40 dwarf.c
--- dwarf.c	24 Sep 2008 23:21:03 -0000	1.40
+++ dwarf.c	26 Sep 2008 00:22:49 -0000
@@ -1839,7 +1839,7 @@
 
   if (!do_loc)
     {
-      printf (_("The section %s contains:\n\n"), section->name);
+      printf (_("Contents of the %s section:\n\n"), section->name);
 
       load_debug_section (str, file);
     }
@@ -2904,7 +2904,7 @@
 	  if (offset != 0)
 	    {
 	      data += offset_size;
-	      printf ("    %-6ld\t\t%s\n", offset, data);
+	      printf ("    %-6lx\t%s\n", offset, data);
 	      data += strlen ((char *) data) + 1;
 	    }
 	}
@@ -3322,7 +3322,7 @@
   unsigned char *start = section->start;
   unsigned char *end = start + section->size;
 
-  printf (_("The section %s contains:\n\n"), section->name);
+  printf (_("Contents of the %s section:\n\n"), section->name);
 
   /* It does not matter if this load fails,
      we test for that later on.  */
@@ -3423,6 +3423,7 @@
 
 	  ranges += address_size;
 
+	  printf ("    ");
 	  print_dwarf_vma (address, address_size);
 	  print_dwarf_vma (length, address_size);
 	  putchar ('\n');
@@ -3814,7 +3815,7 @@
   unsigned int length_return;
   int max_regs = 0;
 
-  printf (_("The section %s contains:\n"), section->name);
+  printf (_("Contents of the %s section:\n"), section->name);
 
   while (start < end)
     {
Index: testsuite/binutils-all/objdump.W
===================================================================
RCS file: /cvs/src/src/binutils/testsuite/binutils-all/objdump.W,v
retrieving revision 1.2
diff -u -r1.2 objdump.W
--- testsuite/binutils-all/objdump.W	11 Jul 2008 10:47:29 -0000	1.2
+++ testsuite/binutils-all/objdump.W	26 Sep 2008 00:22:49 -0000
@@ -1,7 +1,7 @@
 
 tmpdir/dw2-compressed.o:     file format .*
 
-The section .debug_info contains:
+Contents of the .debug_info section:
 
   Compilation Unit @ offset 0x0:
    Length:        0x4e \(32-bit\)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFA: minor fixes to readelf
  2008-09-26  0:24 RFA: minor fixes to readelf Tom Tromey
@ 2008-09-26  4:31 ` Alan Modra
  2008-09-26 15:03   ` Tom Tromey
  2008-10-03 21:18   ` Tom Tromey
  0 siblings, 2 replies; 7+ messages in thread
From: Alan Modra @ 2008-09-26  4:31 UTC (permalink / raw)
  To: Tom Tromey; +Cc: binutils

On Thu, Sep 25, 2008 at 06:22:48PM -0600, Tom Tromey wrote:
> ChangeLog:
> 2008-09-25  Tom Tromey  <tromey@redhat.com>
> 
> 	* dwarf.c (display_debug_frames): Change text for uniformity.
> 	(process_debug_info): Likewise.
> 	(display_debug_aranges): Likewise.  Indent address output.
> 	(display_debug_pubnames): Print offset in hex.
> 
> testsuite/ChangeLog:
> 2008-09-25  Tom Tromey  <tromey@redhat.com>
> 
> 	* binutils-all/objdump.W: Update.

I think you missed some testsuite files.  A quick grep shows:

./ld/testsuite/ld-mips-elf/eh-frame3.d:The section \.eh_frame contains:
./ld/testsuite/ld-mips-elf/eh-frame4.d:The section \.eh_frame contains:
./ld/testsuite/ld-mips-elf/eh-frame1-n32.d:The section \.eh_frame contains:
./ld/testsuite/ld-mips-elf/eh-frame1-n64.d:The section \.eh_frame contains:
./ld/testsuite/ld-mips-elf/eh-frame2-n32.d:The section \.eh_frame contains:
./ld/testsuite/ld-mips-elf/eh-frame2-n64.d:The section \.eh_frame contains:
./ld/testsuite/ld-elf/eh1.d:The section .eh_frame contains:
./ld/testsuite/ld-elf/eh2.d:The section .eh_frame contains:
./ld/testsuite/ld-elf/eh3.d:The section .eh_frame contains:
./ld/testsuite/ld-elf/eh4.d:The section .eh_frame contains:
./ld/testsuite/ld-elf/eh5.d:The section .eh_frame contains:
./ld/testsuite/ld-elf/eh6.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-m68k.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-x86_64.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-s390x-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-arm-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-sh-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-i386-2.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-sparc64-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-ppc-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-mips-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-s390-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-hppa-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-common-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-common-2.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-common-3.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-common-4.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-common-5.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-common-6.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-sparc-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-alpha-1.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-alpha-3.d:The section .eh_frame contains:
./gas/testsuite/gas/cfi/cfi-i386.d:The section .eh_frame contains:

OK if you fix these too.

-- 
Alan Modra
Australia Development Lab, IBM

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFA: minor fixes to readelf
  2008-09-26  4:31 ` Alan Modra
@ 2008-09-26 15:03   ` Tom Tromey
  2008-10-03 21:18   ` Tom Tromey
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Tromey @ 2008-09-26 15:03 UTC (permalink / raw)
  To: binutils

Alan> I think you missed some testsuite files.  A quick grep shows:

Sorry about that.

Alan> OK if you fix these too.

Thanks.  I'll send a new patch once I'm done testing it.

Tom

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFA: minor fixes to readelf
  2008-09-26  4:31 ` Alan Modra
  2008-09-26 15:03   ` Tom Tromey
@ 2008-10-03 21:18   ` Tom Tromey
  2008-10-06 12:51     ` Nick Clifton
  1 sibling, 1 reply; 7+ messages in thread
From: Tom Tromey @ 2008-10-03 21:18 UTC (permalink / raw)
  To: binutils

>>>>> "Alan" == Alan Modra <amodra@bigpond.net.au> writes:

Alan> I think you missed some testsuite files.  A quick grep shows:
[...]
Alan> OK if you fix these too.

I figured that due to the delay I would resubmit the patch rather than
just checking it in.

Here it is.

Built and regression-tested on x86 F8.

The ld "bootstrap" tests seem to randomly pass or fail -- I ran them
several times with varying results.

Also, I did not test the ld-mips-elf test suite changes.

Otherwise this patch is regression-free.

Ok?

Tom

binutils/ChangeLog:
2008-10-03  Tom Tromey  <tromey@redhat.com>

	* dwarf.c (display_debug_frames): Change text for uniformity.
	(process_debug_info): Likewise.
	(display_debug_aranges): Likewise.  Indent address output.
	(display_debug_pubnames): Print offset in hex.

binutils/testsuite/ChangeLog:
2008-10-03  Tom Tromey  <tromey@redhat.com>

	* binutils-all/objdump.W: Update.

gas/testsuite/ChangeLog:
2008-10-03  Tom Tromey  <tromey@redhat.com>

	* gas/cfi/cfi-alpha-1.d, gas/cfi/cfi-alpha-3.d,
	gas/cfi/cfi-arm-1.d, gas/cfi/cfi-common-1.d,
	gas/cfi/cfi-common-2.d, gas/cfi/cfi-common-3.d,
	gas/cfi/cfi-common-4.d, gas/cfi/cfi-common-5.d,
	gas/cfi/cfi-common-6.d, gas/cfi/cfi-hppa-1.d,
	gas/cfi/cfi-i386-2.d, gas/cfi/cfi-i386.d, gas/cfi/cfi-m68k.d,
	gas/cfi/cfi-mips-1.d, gas/cfi/cfi-ppc-1.d, gas/cfi/cfi-s390-1.d,
	gas/cfi/cfi-s390x-1.d, gas/cfi/cfi-sh-1.d, gas/cfi/cfi-sparc-1.d,
	gas/cfi/cfi-sparc64-1.d, gas/cfi/cfi-x86_64.d: Update for readelf
	change.

ld/testsuite/ChangeLog:
2008-10-03  Tom Tromey  <tromey@redhat.com>

	* ld-elf/eh1.d, ld-elf/eh2.d, ld-elf/eh3.d, ld-elf/eh4.d,
	ld-elf/eh5.d, ld-elf/eh6.d, ld-mips-elf/eh-frame1-n32.d,
	ld-mips-elf/eh-frame1-n64.d, ld-mips-elf/eh-frame2-n32.d,
	ld-mips-elf/eh-frame2-n64.d, ld-mips-elf/eh-frame3.d,
	ld-mips-elf/eh-frame4.d: Update for readelf change.

Index: binutils/dwarf.c
===================================================================
RCS file: /cvs/src/src/binutils/dwarf.c,v
retrieving revision 1.40
diff -u -r1.40 dwarf.c
--- binutils/dwarf.c	24 Sep 2008 23:21:03 -0000	1.40
+++ binutils/dwarf.c	3 Oct 2008 21:16:36 -0000
@@ -1839,7 +1839,7 @@
 
   if (!do_loc)
     {
-      printf (_("The section %s contains:\n\n"), section->name);
+      printf (_("Contents of the %s section:\n\n"), section->name);
 
       load_debug_section (str, file);
     }
@@ -2904,7 +2904,7 @@
 	  if (offset != 0)
 	    {
 	      data += offset_size;
-	      printf ("    %-6ld\t\t%s\n", offset, data);
+	      printf ("    %-6lx\t%s\n", offset, data);
 	      data += strlen ((char *) data) + 1;
 	    }
 	}
@@ -3322,7 +3322,7 @@
   unsigned char *start = section->start;
   unsigned char *end = start + section->size;
 
-  printf (_("The section %s contains:\n\n"), section->name);
+  printf (_("Contents of the %s section:\n\n"), section->name);
 
   /* It does not matter if this load fails,
      we test for that later on.  */
@@ -3423,6 +3423,7 @@
 
 	  ranges += address_size;
 
+	  printf ("    ");
 	  print_dwarf_vma (address, address_size);
 	  print_dwarf_vma (length, address_size);
 	  putchar ('\n');
@@ -3814,7 +3815,7 @@
   unsigned int length_return;
   int max_regs = 0;
 
-  printf (_("The section %s contains:\n"), section->name);
+  printf (_("Contents of the %s section:\n"), section->name);
 
   while (start < end)
     {
Index: binutils/testsuite/binutils-all/objdump.W
===================================================================
RCS file: /cvs/src/src/binutils/testsuite/binutils-all/objdump.W,v
retrieving revision 1.2
diff -u -r1.2 objdump.W
--- binutils/testsuite/binutils-all/objdump.W	11 Jul 2008 10:47:29 -0000	1.2
+++ binutils/testsuite/binutils-all/objdump.W	3 Oct 2008 21:16:36 -0000
@@ -1,7 +1,7 @@
 
 tmpdir/dw2-compressed.o:     file format .*
 
-The section .debug_info contains:
+Contents of the .debug_info section:
 
   Compilation Unit @ offset 0x0:
    Length:        0x4e \(32-bit\)
Index: gas/testsuite/gas/cfi/cfi-alpha-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-alpha-1.d,v
retrieving revision 1.5
diff -u -r1.5 cfi-alpha-1.d
--- gas/testsuite/gas/cfi/cfi-alpha-1.d	28 Jan 2008 15:15:31 -0000	1.5
+++ gas/testsuite/gas/cfi/cfi-alpha-1.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on alpha
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-alpha-3.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-alpha-3.d,v
retrieving revision 1.5
diff -u -r1.5 cfi-alpha-3.d
--- gas/testsuite/gas/cfi/cfi-alpha-3.d	28 Jan 2008 15:15:31 -0000	1.5
+++ gas/testsuite/gas/cfi/cfi-alpha-3.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on alpha, 3
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-arm-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-arm-1.d,v
retrieving revision 1.1
diff -u -r1.1 cfi-arm-1.d
--- gas/testsuite/gas/cfi/cfi-arm-1.d	25 Oct 2004 12:26:04 -0000	1.1
+++ gas/testsuite/gas/cfi/cfi-arm-1.d	3 Oct 2008 21:16:37 -0000
@@ -1,7 +1,7 @@
 #readelf: -wf
 #name: CFI on ARM
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-common-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-common-1.d,v
retrieving revision 1.6
diff -u -r1.6 cfi-common-1.d
--- gas/testsuite/gas/cfi/cfi-common-1.d	21 Aug 2008 19:49:02 -0000	1.6
+++ gas/testsuite/gas/cfi/cfi-common-1.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI common 1
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-common-2.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-common-2.d,v
retrieving revision 1.6
diff -u -r1.6 cfi-common-2.d
--- gas/testsuite/gas/cfi/cfi-common-2.d	28 Jan 2008 15:15:31 -0000	1.6
+++ gas/testsuite/gas/cfi/cfi-common-2.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI common 2
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-common-3.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-common-3.d,v
retrieving revision 1.4
diff -u -r1.4 cfi-common-3.d
--- gas/testsuite/gas/cfi/cfi-common-3.d	15 Mar 2005 05:28:17 -0000	1.4
+++ gas/testsuite/gas/cfi/cfi-common-3.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI common 3
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-common-4.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-common-4.d,v
retrieving revision 1.3
diff -u -r1.3 cfi-common-4.d
--- gas/testsuite/gas/cfi/cfi-common-4.d	15 Mar 2005 05:28:17 -0000	1.3
+++ gas/testsuite/gas/cfi/cfi-common-4.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI common 4
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-common-5.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-common-5.d,v
retrieving revision 1.2
diff -u -r1.2 cfi-common-5.d
--- gas/testsuite/gas/cfi/cfi-common-5.d	28 Jan 2008 15:15:31 -0000	1.2
+++ gas/testsuite/gas/cfi/cfi-common-5.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI common 5
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-common-6.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-common-6.d,v
retrieving revision 1.2
diff -u -r1.2 cfi-common-6.d
--- gas/testsuite/gas/cfi/cfi-common-6.d	31 Oct 2007 16:09:53 -0000	1.2
+++ gas/testsuite/gas/cfi/cfi-common-6.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI common 6
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000018 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-hppa-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-hppa-1.d,v
retrieving revision 1.3
diff -u -r1.3 cfi-hppa-1.d
--- gas/testsuite/gas/cfi/cfi-hppa-1.d	21 Aug 2008 19:49:02 -0000	1.3
+++ gas/testsuite/gas/cfi/cfi-hppa-1.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on hppa
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-i386-2.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-i386-2.d,v
retrieving revision 1.1
diff -u -r1.1 cfi-i386-2.d
--- gas/testsuite/gas/cfi/cfi-i386-2.d	27 May 2003 16:52:49 -0000	1.1
+++ gas/testsuite/gas/cfi/cfi-i386-2.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on i386, 2
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-i386.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-i386.d,v
retrieving revision 1.10
diff -u -r1.10 cfi-i386.d
--- gas/testsuite/gas/cfi/cfi-i386.d	1 Aug 2008 14:21:28 -0000	1.10
+++ gas/testsuite/gas/cfi/cfi-i386.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on i386
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-m68k.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-m68k.d,v
retrieving revision 1.4
diff -u -r1.4 cfi-m68k.d
--- gas/testsuite/gas/cfi/cfi-m68k.d	28 Jan 2008 15:15:31 -0000	1.4
+++ gas/testsuite/gas/cfi/cfi-m68k.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on m68k
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-mips-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-mips-1.d,v
retrieving revision 1.2
diff -u -r1.2 cfi-mips-1.d
--- gas/testsuite/gas/cfi/cfi-mips-1.d	28 Jan 2008 15:15:31 -0000	1.2
+++ gas/testsuite/gas/cfi/cfi-mips-1.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on mips, 1
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-ppc-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-ppc-1.d,v
retrieving revision 1.2
diff -u -r1.2 cfi-ppc-1.d
--- gas/testsuite/gas/cfi/cfi-ppc-1.d	16 Aug 2004 00:09:20 -0000	1.2
+++ gas/testsuite/gas/cfi/cfi-ppc-1.d	3 Oct 2008 21:16:37 -0000
@@ -2,7 +2,7 @@
 #name: CFI on ppc
 #as: -a32
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-s390-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-s390-1.d,v
retrieving revision 1.2
diff -u -r1.2 cfi-s390-1.d
--- gas/testsuite/gas/cfi/cfi-s390-1.d	16 Aug 2004 00:09:20 -0000	1.2
+++ gas/testsuite/gas/cfi/cfi-s390-1.d	3 Oct 2008 21:16:37 -0000
@@ -2,7 +2,7 @@
 #name: CFI on s390
 #as: -m31 -march=g5
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-s390x-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-s390x-1.d,v
retrieving revision 1.3
diff -u -r1.3 cfi-s390x-1.d
--- gas/testsuite/gas/cfi/cfi-s390x-1.d	16 Aug 2004 00:09:20 -0000	1.3
+++ gas/testsuite/gas/cfi/cfi-s390x-1.d	3 Oct 2008 21:16:37 -0000
@@ -2,7 +2,7 @@
 #name: CFI on s390x
 #as: -m64 -march=z900
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-sh-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-sh-1.d,v
retrieving revision 1.3
diff -u -r1.3 cfi-sh-1.d
--- gas/testsuite/gas/cfi/cfi-sh-1.d	28 Jan 2008 15:15:31 -0000	1.3
+++ gas/testsuite/gas/cfi/cfi-sh-1.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on SH
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-sparc-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-sparc-1.d,v
retrieving revision 1.3
diff -u -r1.3 cfi-sparc-1.d
--- gas/testsuite/gas/cfi/cfi-sparc-1.d	28 Jan 2008 15:15:31 -0000	1.3
+++ gas/testsuite/gas/cfi/cfi-sparc-1.d	3 Oct 2008 21:16:37 -0000
@@ -2,7 +2,7 @@
 #name: CFI on SPARC 32-bit
 #as: -32
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-sparc64-1.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-sparc64-1.d,v
retrieving revision 1.4
diff -u -r1.4 cfi-sparc64-1.d
--- gas/testsuite/gas/cfi/cfi-sparc64-1.d	28 Jan 2008 15:15:31 -0000	1.4
+++ gas/testsuite/gas/cfi/cfi-sparc64-1.d	3 Oct 2008 21:16:37 -0000
@@ -2,7 +2,7 @@
 #name: CFI on SPARC 64-bit
 #as: -64
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: gas/testsuite/gas/cfi/cfi-x86_64.d
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/cfi/cfi-x86_64.d,v
retrieving revision 1.12
diff -u -r1.12 cfi-x86_64.d
--- gas/testsuite/gas/cfi/cfi-x86_64.d	1 Aug 2008 14:21:29 -0000	1.12
+++ gas/testsuite/gas/cfi/cfi-x86_64.d	3 Oct 2008 21:16:37 -0000
@@ -1,6 +1,6 @@
 #readelf: -wf
 #name: CFI on x86-64
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-elf/eh1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/eh1.d,v
retrieving revision 1.3
diff -u -r1.3 eh1.d
--- ld/testsuite/ld-elf/eh1.d	28 Jan 2008 15:15:32 -0000	1.3
+++ ld/testsuite/ld-elf/eh1.d	3 Oct 2008 21:16:37 -0000
@@ -4,7 +4,7 @@
 #readelf: -wf
 #target: x86_64-*-*
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-elf/eh2.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/eh2.d,v
retrieving revision 1.3
diff -u -r1.3 eh2.d
--- ld/testsuite/ld-elf/eh2.d	28 Jan 2008 15:15:32 -0000	1.3
+++ ld/testsuite/ld-elf/eh2.d	3 Oct 2008 21:16:37 -0000
@@ -4,7 +4,7 @@
 #readelf: -wf
 #target: x86_64-*-*
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-elf/eh3.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/eh3.d,v
retrieving revision 1.3
diff -u -r1.3 eh3.d
--- ld/testsuite/ld-elf/eh3.d	28 Jan 2008 15:15:32 -0000	1.3
+++ ld/testsuite/ld-elf/eh3.d	3 Oct 2008 21:16:37 -0000
@@ -4,7 +4,7 @@
 #readelf: -wf
 #target: x86_64-*-*
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-elf/eh4.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/eh4.d,v
retrieving revision 1.2
diff -u -r1.2 eh4.d
--- ld/testsuite/ld-elf/eh4.d	28 Jan 2008 15:15:32 -0000	1.2
+++ ld/testsuite/ld-elf/eh4.d	3 Oct 2008 21:16:37 -0000
@@ -4,7 +4,7 @@
 #readelf: -wf
 #target: x86_64-*-*
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-elf/eh5.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/eh5.d,v
retrieving revision 1.3
diff -u -r1.3 eh5.d
--- ld/testsuite/ld-elf/eh5.d	20 Sep 2008 08:42:53 -0000	1.3
+++ ld/testsuite/ld-elf/eh5.d	3 Oct 2008 21:16:37 -0000
@@ -6,7 +6,7 @@
 #target: cfi
 #notarget: alpha*
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 0000001[04] 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-elf/eh6.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/eh6.d,v
retrieving revision 1.1
diff -u -r1.1 eh6.d
--- ld/testsuite/ld-elf/eh6.d	9 Jan 2008 09:36:11 -0000	1.1
+++ ld/testsuite/ld-elf/eh6.d	3 Oct 2008 21:16:37 -0000
@@ -3,7 +3,7 @@
 #readelf: -wf
 #target: x86_64-*-linux-gnu i?86-*-linux-gnu
 
-The section .eh_frame contains:
+Contents of the .eh_frame section:
 
 00000000 0000001[4c] 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-mips-elf/eh-frame1-n32.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-mips-elf/eh-frame1-n32.d,v
retrieving revision 1.3
diff -u -r1.3 eh-frame1-n32.d
--- ld/testsuite/ld-mips-elf/eh-frame1-n32.d	17 Mar 2008 18:52:04 -0000	1.3
+++ ld/testsuite/ld-mips-elf/eh-frame1-n32.d	3 Oct 2008 21:16:37 -0000
@@ -17,7 +17,7 @@
 0003008b  [0-9a-f]+ R_MIPS_REL32      00000000   foo
 000300d0  [0-9a-f]+ R_MIPS_REL32      00000000   foo
 0003010e  [0-9a-f]+ R_MIPS_REL32      00000000   foo
-The section \.eh_frame contains:
+Contents of the section \.eh_frame:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-mips-elf/eh-frame1-n64.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-mips-elf/eh-frame1-n64.d,v
retrieving revision 1.3
diff -u -r1.3 eh-frame1-n64.d
--- ld/testsuite/ld-mips-elf/eh-frame1-n64.d	17 Mar 2008 18:52:04 -0000	1.3
+++ ld/testsuite/ld-mips-elf/eh-frame1-n64.d	3 Oct 2008 21:16:37 -0000
@@ -33,7 +33,7 @@
 000000030192  [0-9a-f]+ R_MIPS_REL32      0000000000000000 foo
  *Type2: R_MIPS_64 *
  *Type3: R_MIPS_NONE *
-The section \.eh_frame contains:
+Contents of the section \.eh_frame:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-mips-elf/eh-frame2-n32.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-mips-elf/eh-frame2-n32.d,v
retrieving revision 1.3
diff -u -r1.3 eh-frame2-n32.d
--- ld/testsuite/ld-mips-elf/eh-frame2-n32.d	17 Mar 2008 18:52:04 -0000	1.3
+++ ld/testsuite/ld-mips-elf/eh-frame2-n32.d	3 Oct 2008 21:16:37 -0000
@@ -17,7 +17,7 @@
 0003008b  [0-9a-f]+ R_MIPS_REL32      00000000   foo
 000300cc  [0-9a-f]+ R_MIPS_REL32      00000000   foo
 0003010a  [0-9a-f]+ R_MIPS_REL32      00000000   foo
-The section \.eh_frame contains:
+Contents of the section \.eh_frame:
 
 00000000 00000010 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-mips-elf/eh-frame2-n64.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-mips-elf/eh-frame2-n64.d,v
retrieving revision 1.3
diff -u -r1.3 eh-frame2-n64.d
--- ld/testsuite/ld-mips-elf/eh-frame2-n64.d	17 Mar 2008 18:52:04 -0000	1.3
+++ ld/testsuite/ld-mips-elf/eh-frame2-n64.d	3 Oct 2008 21:16:37 -0000
@@ -33,7 +33,7 @@
 00000003018a  [0-9a-f]+ R_MIPS_REL32      0000000000000000 foo
  *Type2: R_MIPS_64 *
  *Type3: R_MIPS_NONE *
-The section \.eh_frame contains:
+Contents of the section \.eh_frame:
 
 00000000 00000014 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-mips-elf/eh-frame3.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-mips-elf/eh-frame3.d,v
retrieving revision 1.2
diff -u -r1.2 eh-frame3.d
--- ld/testsuite/ld-mips-elf/eh-frame3.d	2 Feb 2005 20:19:35 -0000	1.2
+++ ld/testsuite/ld-mips-elf/eh-frame3.d	3 Oct 2008 21:16:37 -0000
@@ -9,7 +9,7 @@
 # combination of 32-bit objects and 64-bit FDE addresses.
 #
 
-The section \.eh_frame contains:
+Contents of the section \.eh_frame:
 
 00000000 0000000c 00000000 CIE
   Version:               1
Index: ld/testsuite/ld-mips-elf/eh-frame4.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-mips-elf/eh-frame4.d,v
retrieving revision 1.2
diff -u -r1.2 eh-frame4.d
--- ld/testsuite/ld-mips-elf/eh-frame4.d	2 Feb 2005 20:19:35 -0000	1.2
+++ ld/testsuite/ld-mips-elf/eh-frame4.d	3 Oct 2008 21:16:37 -0000
@@ -8,7 +8,7 @@
 # This test is for the semi-official ILP32 variation of EABI64.
 #
 
-The section \.eh_frame contains:
+Contents of the section \.eh_frame:
 
 00000000 0000000c 00000000 CIE
   Version:               1

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFA: minor fixes to readelf
  2008-10-03 21:18   ` Tom Tromey
@ 2008-10-06 12:51     ` Nick Clifton
  2008-10-06 16:30       ` Nick Clifton
  0 siblings, 1 reply; 7+ messages in thread
From: Nick Clifton @ 2008-10-06 12:51 UTC (permalink / raw)
  To: Tom Tromey; +Cc: binutils

Hi Tom,

> Built and regression-tested on x86 F8.
> Otherwise this patch is regression-free.

Close but no banana...

Checking Binutils in: alpha-linuxecoff ... GAS: 8 BIN: 1 done
   GAS REGRESSION: CFI on alpha
   GAS REGRESSION: CFI on alpha, 3
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   BIN REGRESSION: objdump -W
Checking Binutils in: alpha-linux-gnu ... GAS: 8 BIN: 1 done
   GAS REGRESSION: CFI on alpha
   GAS REGRESSION: CFI on alpha, 3
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   BIN REGRESSION: objdump -W
Checking Binutils in: alpha-unknown-freebsd4.7 ... done
Checking Binutils in: alpha-unknown-osf4.0 ... GAS: 4 LD: 4 BIN: 4 done
Checking Binutils in: am33_2.0-linux-gnu ... GAS: 6 BIN: 2 done
   BIN REGRESSION: objdump -W
Checking Binutils in: arc-elf ... GAS: 1 LD: 7 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: arm-aout ... GAS: 26 LD: 6 BIN: 2 done
Checking Binutils in: arm-epoc-pe ... LD: 3 done
Checking Binutils in: arm-netbsdelf ... GAS: 9 LD: 3 BIN: 1 done
   GAS REGRESSION: CFI on ARM
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: arm-none-eabi ... GAS: 7 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on ARM
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: arm-nto ... GAS: 1 done
Checking Binutils in: arm-symbianelf ... GAS: 1 done
Checking Binutils in: arm-vxworks ... LD: 6 done
Checking Binutils in: arm-wince-pe ... GAS: 1 LD: 1 done
Checking Binutils in: avr-elf ... GAS: 1 LD: 3 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: bfin-elf ... GAS: 10 LD: 2 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: cr16-elf ... LD: 5 BIN: 1 done
Checking Binutils in: crx-elf ... LD: 2 BIN: 1 done
Checking Binutils in: cris-elf ... BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: crisv32-elf ... BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: d10v-elf ... GAS: 1 LD: 6 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: d30v-elf ... GAS: 3 LD: 7 BIN: 2 done
Checking Binutils in: dlx-elf ... GAS: 1 LD: 8 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: fr30-elf ... LD: 4 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: frv-elf ... GAS: 1 LD: 4 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: h8300-elf ... BIN: 1 done
Checking Binutils in: h8300-rtems ... GAS: 1 LD: 4 done
Checking Binutils in: hppa-linux-gnu ... GAS: 7 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on hppa
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: hppa64-linux ... GAS: 4 LD: 8 BIN: 1 done
   GAS REGRESSION: CFI on hppa
   BIN REGRESSION: objdump -W
Checking Binutils in: i370-linux ... LD: 8 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: i386-coff ... GAS: 2 LD: 1 done
Checking Binutils in: i386-lynxos ... done
Checking Binutils in: i386-netware ... done
Checking Binutils in: i386-rdos ... done
Checking Binutils in: i586-aout ... done
Checking Binutils in: i686-pc-beos ... done
Checking Binutils in: i686-pc-cygwin ... LD: 1 done
Checking Binutils in: i686-pc-elf ... GAS: 7 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on i386
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: i686-pc-linux-gnu ... GAS: 7 LD: 2 BIN: 1 done
   GAS REGRESSION: CFI on i386
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   LD REGRESSION: ld-elf/eh6
   BIN REGRESSION: objdump -W
Checking Binutils in: i686-pc-linux-gnu-gold ... GAS: 7 BIN: 1 done
   GAS REGRESSION: CFI on i386
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   BIN REGRESSION: objdump -W
Checking Binutils in: i686-pc-mingw32 ... LD: 1 done
Checking Binutils in: i860-stardent-elf ... GAS: 1 LD: 4 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: ia64-x-freebsd5 ... done
Checking Binutils in: ia64-linux ... BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: ip2k-elf ... LD: 1 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: iq2000-elf ... LD: 4 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: m32c-elf ... done
Checking Binutils in: m32r-elf ... BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: m68hc11-elf ... done
Checking Binutils in: m68k-elf ... done
Checking Binutils in: m68k-rtems ... done
Checking Binutils in: m68k-uclinux ... done
Checking Binutils in: mcore-elf ... BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: mcore-pe ... LD: 1 done
Checking Binutils in: mep-elf ... done
Checking Binutils in: mingw32-pe ... LD: 1 done
Checking Binutils in: mips64-linux ... GAS: 6 LD: 5 BIN: 1 done
   GAS REGRESSION: CFI on mips, 1
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   LD REGRESSION: MIPS eh-frame 1, n32
   LD REGRESSION: MIPS eh-frame 1, n64
   LD REGRESSION: MIPS eh-frame 2, n32
   LD REGRESSION: MIPS eh-frame 2, n64
   BIN REGRESSION: objdump -W
Checking Binutils in: mips-ecoff ... GAS: 480 LD: 8 BIN: 3 done
Checking Binutils in: mips-elf ... GAS: 7 LD: 35 BIN: 2 done
   GAS REGRESSION: CFI on mips, 1
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   BIN REGRESSION: objdump -W
Checking Binutils in: mips-sgi-irix6 ... GAS: 13 LD: 54 BIN: 3 done
   GAS REGRESSION: CFI on mips, 1
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   BIN REGRESSION: objdump -W
Checking Binutils in: mipsel-linux-gnu ... GAS: 7 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on mips, 1
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   BIN REGRESSION: objdump -W
Checking Binutils in: mipsisa32el-linux ... GAS: 20 LD: 6 BIN: 1 done
   GAS REGRESSION: CFI on mips, 1
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   BIN REGRESSION: objdump -W
Checking Binutils in: mips64vrel-elf ... GAS: 8 LD: 35 BIN: 2 done
   GAS REGRESSION: CFI on mips, 1
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   BIN REGRESSION: objdump -W
Checking Binutils in: mmix-mmixware ... LD: 21 done
Checking Binutils in: mn10200-elf ... GAS: 3 LD: 4 BIN: 1 done
Checking Binutils in: mn10300-elf ... BIN: 1 done
   BIN REGRESSION: objdump -W
   BIN REGRESSION: objdump -W
Checking Binutils in: msp430-elf ... LD: 4 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: mt-elf ... done
Checking Binutils in: ns32k-netbsd ... GAS: 2 LD: 1 BIN: 1 done
Checking Binutils in: openrisc-elf ... LD: 7 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: or32-elf ... LD: 7 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: pdp11-dec-aout ... GAS: 11 LD: 7 BIN: 2 done
Checking Binutils in: pj-elf ... GAS: 2 LD: 7 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: powerpc-eabisim ... GAS: 7 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on ppc
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   GAS REGRESSION: CFI on ppc
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
   BIN REGRESSION: objdump -W
Checking Binutils in: powerpc-ibm-aix5.2.0 ... GAS: 6 LD: 19 BIN: 1 done
Checking Binutils in: powerpc-nto ... done
Checking Binutils in: powerpc-wrs-vxworks ... LD: 1 done
Checking Binutils in: powerpc64-linux ... GAS: 7 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on ppc
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   GAS REGRESSION: CFI on ppc
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
   BIN REGRESSION: objdump -W
Checking Binutils in: ppc-lynxos ... done
Checking Binutils in: rs6000-aix4.3.3 ... GAS: 4 LD: 11 BIN: 1 done
Checking Binutils in: s390-linux ... GAS: 7 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on s390
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: s390x-ibm-tpf ... done
Checking Binutils in: score-elf ... BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: sh64-superh-linux-gnu ... done
Checking Binutils in: sh-elf ... done
Checking Binutils in: sh-linux ... done
Checking Binutils in: sh-nto ... LD: 1 done
Checking Binutils in: sh-symbianelf ... done
Checking Binutils in: shl-unknown-netbsdelf1.6T ... done
Checking Binutils in: sparc64-linux-gnu ... GAS: 8 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on SPARC 32-bit
   GAS REGRESSION: CFI on SPARC 64-bit
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: sparc64-netbsd ... GAS: 8 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on SPARC 32-bit
   GAS REGRESSION: CFI on SPARC 64-bit
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: sparc-linux-gnu ... GAS: 8 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on SPARC 32-bit
   GAS REGRESSION: CFI on SPARC 64-bit
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: tic30-unknown-aout ... GAS: 4 LD: 23 done
Checking Binutils in: tic4x-coff ... GAS: 1 LD: 4 done
Checking Binutils in: tic54x-coff ... GAS: 5 LD: 13 done
Checking Binutils in: tx39-elf ... GAS: 10 LD: 35 BIN: 2 done
   GAS REGRESSION: CFI on mips, 1
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   BIN REGRESSION: objdump -W
Checking Binutils in: v850-elf ... LD: 1 BIN: 1 done
Checking Binutils in: vax-netbsdelf ... GAS: 4 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: x86_64-linux ... GAS: 8 LD: 6 BIN: 1 done
   GAS REGRESSION: CFI on x86-64
   GAS REGRESSION: CFI on i386
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh1
   LD REGRESSION: ld-elf/eh2
   LD REGRESSION: ld-elf/eh3
   LD REGRESSION: ld-elf/eh4
   LD REGRESSION: ld-elf/eh5
   LD REGRESSION: ld-elf/eh6
   BIN REGRESSION: objdump -W
Checking Binutils in: x86_64-solaris2 ... GAS: 8 LD: 5 BIN: 1 done
   GAS REGRESSION: CFI on x86-64
   GAS REGRESSION: CFI on i386
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh1
   LD REGRESSION: ld-elf/eh2
   LD REGRESSION: ld-elf/eh3
   LD REGRESSION: ld-elf/eh4
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: xscale-elf ... GAS: 9 LD: 1 BIN: 1 done
   GAS REGRESSION: CFI on ARM
   GAS REGRESSION: CFI common 1
   GAS REGRESSION: CFI common 2
   GAS REGRESSION: CFI common 3
   GAS REGRESSION: CFI common 4
   GAS REGRESSION: CFI common 5
   GAS REGRESSION: CFI common 6
   LD REGRESSION: ld-elf/eh5
   BIN REGRESSION: objdump -W
Checking Binutils in: xstormy16-elf ... LD: 7 BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: xtensa-elf ... BIN: 1 done
   BIN REGRESSION: objdump -W
Checking Binutils in: z8k-coff ... done


Cheers
   Nick

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFA: minor fixes to readelf
  2008-10-06 12:51     ` Nick Clifton
@ 2008-10-06 16:30       ` Nick Clifton
  2008-10-06 16:40         ` Tom Tromey
  0 siblings, 1 reply; 7+ messages in thread
From: Nick Clifton @ 2008-10-06 16:30 UTC (permalink / raw)
  To: Tom Tromey; +Cc: binutils

Hi TOm,

 > Nick Clifton wrote:
> Close but no banana...

Doh!  I applied your patch but failed to rebuild the toolchains before 
running the regression tests.  Silly me.

So you get the banana, plus your patch checked in.  (I have checked it 
in myself since it was already applied to my local tree).

Cheers
   Nick

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFA: minor fixes to readelf
  2008-10-06 16:30       ` Nick Clifton
@ 2008-10-06 16:40         ` Tom Tromey
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Tromey @ 2008-10-06 16:40 UTC (permalink / raw)
  To: Nick Clifton; +Cc: binutils

>>>>> "Nick" == Nick Clifton <nickc@redhat.com> writes:

Nick> So you get the banana, plus your patch checked in.  (I have checked it
Nick> in myself since it was already applied to my local tree).

Thanks!

Tom

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-10-06 16:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-26  0:24 RFA: minor fixes to readelf Tom Tromey
2008-09-26  4:31 ` Alan Modra
2008-09-26 15:03   ` Tom Tromey
2008-10-03 21:18   ` Tom Tromey
2008-10-06 12:51     ` Nick Clifton
2008-10-06 16:30       ` Nick Clifton
2008-10-06 16:40         ` Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).