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]

hppa testsuite patch


hppa-linux uses the standard ELF .comm pseudo, so no need to hack the
testsuite around.  Committed.

Alan Modra
-- 
Linuxcare.  Support for the Revolution.

binutils/testsuite/ChangeLog
	* lib/utils-lib.exp (default_binutils_assemble): Don't do the hppa
	sed fudges for hppa-linux.

Index: binutils/testsuite/lib/utils-lib.exp
===================================================================
RCS file: /cvs/src/src/binutils/testsuite/lib/utils-lib.exp,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 utils-lib.exp
--- utils-lib.exp	1999/05/03 07:29:11	1.1.1.1
+++ utils-lib.exp	2000/07/10 13:24:11
@@ -90,10 +90,11 @@ proc default_binutils_assemble { source 
     # This is a hack in that it won't scale well if other targets need
     # similar transformations to assemble.  We'll generalize the hack
     # if/when other targets need similar handling.
-    if [istarget "hppa*-*-*" ] then {
-	send_log "sed -f $srcdir/config/hppa.sed < $source > asm.s\n"
-	verbose "sed -f $srcdir/config/hppa.sed < $source > asm.s"
-	catch "exec sed -f $srcdir/config/hppa.sed < $source > asm.s";
+    if { [istarget "hppa*-*-*"] && ![istarget "*-*-linux*" ] } then {
+        set sed_file $srcdir/config/hppa.sed
+	send_log "sed -f $sed_file < $source > asm.s\n"
+	verbose "sed -f $sed_file < $source > asm.s"
+	catch "exec sed -f $sed_file < $source > asm.s";
 	set source asm.s
     }
 


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