This is the mail archive of the binutils@sources.redhat.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]
Other format: [Raw text]

Small MIPS ld testsuite fix


The new MIPS jalbal test requires n32 and so should only be run
if $has_newabi.  Tested as before, fixes bogus failures on
mips*-elf targets.  Installed as obvious.

Richard


	* ld-mips-elf/mips-elf.exp: Only run jalbal if n32 is supported.

Index: ld/testsuite/ld-mips-elf/mips-elf.exp
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-mips-elf/mips-elf.exp,v
retrieving revision 1.21
diff -u -p -F^\([(a-zA-Z0-9_]\|#define\) -r1.21 mips-elf.exp
--- ld/testsuite/ld-mips-elf/mips-elf.exp	9 Dec 2004 07:14:53 -0000	1.21
+++ ld/testsuite/ld-mips-elf/mips-elf.exp	13 Dec 2004 13:05:59 -0000
@@ -81,4 +81,6 @@ if {$has_newabi && $linux_gnu} {
 }
 
 run_dump_test "jaloverflow"
-run_dump_test "jalbal"
+if {$has_newabi} {
+    run_dump_test "jalbal"
+}


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