This is the mail archive of the binutils@sourceware.cygnus.com 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]

make check failures...


Hi,

I get the following two failures when running make check on the current
CVS tree on a NetWinder.

Running /home/scottb/cvstree/binutils/gas/testsuite/gas/elf/elf.exp ...
FAIL: elf section0
FAIL: elf section1

I looked into this and found the output different from the .d files it
is compared against.  It seems section alignment is to blame.  A patch
that fixed it for me is attached.  

1999-08-30  Scott Bambrough  <scottb@netwinder.org>

	* gas/testsuite/gas/elf/section0.d: Fixed to match output
	  from objdump -s.
	* gas/testsuite/gas/elf/section1.d: Fixed to match output
	  from objdump -s.
Index: section0.d
===================================================================
RCS file: /cvs/binutils/binutils/gas/testsuite/gas/elf/section0.d,v
retrieving revision 1.1
diff -u -p -r1.1 section0.d
--- section0.d	1999/06/05 23:14:42	1.1
+++ section0.d	1999/08/30 17:39:17
@@ -5,10 +5,10 @@
 
 Contents of section .text:
 Contents of section .data:
- 0000 0000                                 ..              
+ 0000 00000000                             ....            
 Contents of section A:
- 0000 010101                               ...             
+ 0000 01010100                             ....            
 Contents of section B:
- 0000 0202                                 ..              
+ 0000 02020000                             ....            
 Contents of section C:
- 0000 03                                   .               
+ 0000 03000000                             ....            
Index: section1.d
===================================================================
RCS file: /cvs/binutils/binutils/gas/testsuite/gas/elf/section1.d,v
retrieving revision 1.1
diff -u -p -r1.1 section1.d
--- section1.d	1999/06/05 23:14:42	1.1
+++ section1.d	1999/08/30 17:39:17
@@ -5,10 +5,10 @@
 
 Contents of section .text:
 Contents of section .data:
- 0000 000000                               ...             
+ 0000 00000000                             ....            
 Contents of section A:
- 0000 01010101 0101                        ......          
+ 0000 01010101 01010000                    ........        
 Contents of section B:
- 0000 02020202 02                          .....           
+ 0000 02020202 02000000                    ........        
 Contents of section C:
- 0000 0303                                 ..              
+ 0000 03030000                             ....            

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