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]

ld testsuite tweaks for frv


Tweak some ld tests for frv-linux.

	* ld-elf/sec64k.exp: For frv-linux use "aw" sections.
	* ld-elf/seg.d: Cater for GNU_STACK segment.
	* ld-elf/symbol1ref.s: Use data section.
	* ld-elf/symbol2ref.s: Likewise.
	* ld-scripts/empty-address-1.d: Don't run on frv-linux.
	* ld-scripts/empty-address-2a.d: Likewise.
	* ld-scripts/empty-address-2b.d: Likewise.
	* ld-scripts/empty-aligned.d: Likewise.
	* ld-elf/extract-symbol-1sym.d: Tolerate extra target supplied syms.
	* ld-scripts/sort_b_a-1.d: Likewise.
	* ld-scripts/sort_b_a.d: Likewise.
	* ld-scripts/sort_b_a_a-1.d: Likewise.
	* ld-scripts/sort_b_a_a-2.d: Likewise.
	* ld-scripts/sort_b_a_a-3.d: Likewise.
	* ld-scripts/sort_b_a_n-1.d: Likewise.
	* ld-scripts/sort_b_a_n-2.d: Likewise.
	* ld-scripts/sort_b_a_n-3.d: Likewise.
	* ld-scripts/sort_b_n-1.d: Likewise.
	* ld-scripts/sort_b_n.d: Likewise.
	* ld-scripts/sort_b_n_a-1.d: Likewise.
	* ld-scripts/sort_b_n_a-2.d: Likewise.
	* ld-scripts/sort_b_n_a-3.d: Likewise.
	* ld-scripts/sort_b_n_n-1.d: Likewise.
	* ld-scripts/sort_b_n_n-2.d: Likewise.
	* ld-scripts/sort_b_n_n-3.d: Likewise.
	* ld-scripts/sort_no-1.d: Likewise.
	* ld-scripts/sort_no-2.d: Likewise.

Index: ld/testsuite/ld-elf/extract-symbol-1sym.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/extract-symbol-1sym.d,v
retrieving revision 1.2
diff -u -p -r1.2 extract-symbol-1sym.d
--- ld/testsuite/ld-elf/extract-symbol-1sym.d	7 Mar 2007 10:25:11 -0000	1.2
+++ ld/testsuite/ld-elf/extract-symbol-1sym.d	9 Sep 2009 07:34:41 -0000
@@ -4,8 +4,14 @@
 #objcopy_linked_file: --extract-symbol
 #nm: -n
 #xfail: "hppa*-*-*"
+#...
 0*00010010 T B
+#...
 0*00020123 T C
+#...
 0*00030000 A _entry
+#...
 0*00040000 A linker_symbol
+#...
 0*12345678 A D
+#pass
\ No newline at end of file
Index: ld/testsuite/ld-elf/sec64k.exp
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/sec64k.exp,v
retrieving revision 1.17
diff -u -p -r1.17 sec64k.exp
--- ld/testsuite/ld-elf/sec64k.exp	5 Sep 2009 15:00:09 -0000	1.17
+++ ld/testsuite/ld-elf/sec64k.exp	9 Sep 2009 09:12:33 -0000
@@ -70,7 +70,11 @@ for { set i 0 } { $i < $max_sec / $secs_
     # They should get separate section entries even without -r.
     puts $ofd " .altmacro"
     puts $ofd " .macro sec secn, secp"
-    puts $ofd "  .section .foo.\\secn,\"ax\""
+    if {![istarget "frv-*-*linux*"]} then {
+	puts $ofd "  .section .foo.\\secn,\"ax\""
+    } else {
+	puts $ofd "  .section .foo.\\secn,\"aw\""
+    }
     puts $ofd "  .global foo_\\secn"
     puts $ofd "foo_\\secn:"
     puts $ofd "  .dc.a foo_\\secp"
Index: ld/testsuite/ld-elf/seg.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/seg.d,v
retrieving revision 1.4
diff -u -p -r1.4 seg.d
--- ld/testsuite/ld-elf/seg.d	22 Feb 2008 23:10:45 -0000	1.4
+++ ld/testsuite/ld-elf/seg.d	9 Sep 2009 07:34:41 -0000
@@ -10,10 +10,12 @@ Program Headers:
 #...
   LOAD           .*
   LOAD           0x0*001000 0xf*fffff000 0xf*fffff000 0x0*1000 0x0*1000 .*
-
+# FRV adds a PT_GNU_STACK header
+#...
  Section to Segment mapping:
   Segment Sections...
    00     .*
 # On MIPS, the first segment is for .reginfo.
 #...
    0.     reset boot 
+#pass
Index: ld/testsuite/ld-elf/symbol1ref.s
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/symbol1ref.s,v
retrieving revision 1.2
diff -u -p -r1.2 symbol1ref.s
--- ld/testsuite/ld-elf/symbol1ref.s	6 Nov 2006 12:15:35 -0000	1.2
+++ ld/testsuite/ld-elf/symbol1ref.s	9 Sep 2009 07:34:41 -0000
@@ -1,3 +1,3 @@
-	.text
+	.data
 	.dc.a symbol1
 
Index: ld/testsuite/ld-elf/symbol2ref.s
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/symbol2ref.s,v
retrieving revision 1.2
diff -u -p -r1.2 symbol2ref.s
--- ld/testsuite/ld-elf/symbol2ref.s	6 Nov 2006 10:39:17 -0000	1.2
+++ ld/testsuite/ld-elf/symbol2ref.s	9 Sep 2009 07:34:41 -0000
@@ -1,3 +1,3 @@
-	.text
+	.data
 	.dc.a Foo
 
Index: ld/testsuite/ld-scripts/empty-address-1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/empty-address-1.d,v
retrieving revision 1.2
diff -u -p -r1.2 empty-address-1.d
--- ld/testsuite/ld-scripts/empty-address-1.d	17 Oct 2006 13:41:48 -0000	1.2
+++ ld/testsuite/ld-scripts/empty-address-1.d	9 Sep 2009 07:34:43 -0000
@@ -1,5 +1,6 @@
 #ld: -T empty-address-1.t
 #nm: -n
+#notarget: frv-*-*linux*
 #...
 0+0 T _start
 #...
Index: ld/testsuite/ld-scripts/empty-address-2a.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/empty-address-2a.d,v
retrieving revision 1.1
diff -u -p -r1.1 empty-address-2a.d
--- ld/testsuite/ld-scripts/empty-address-2a.d	27 Sep 2006 04:18:16 -0000	1.1
+++ ld/testsuite/ld-scripts/empty-address-2a.d	9 Sep 2009 07:34:43 -0000
@@ -1,6 +1,7 @@
 #source: empty-address-2.s
 #ld: -Ttext 0x0000000 -Tdata 0x2000000 -T empty-address-2a.t
 #nm: -n
+#notarget: frv-*-*linux*
 #...
 0+0 T _start
 #...
Index: ld/testsuite/ld-scripts/empty-address-2b.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/empty-address-2b.d,v
retrieving revision 1.1
diff -u -p -r1.1 empty-address-2b.d
--- ld/testsuite/ld-scripts/empty-address-2b.d	27 Sep 2006 04:18:16 -0000	1.1
+++ ld/testsuite/ld-scripts/empty-address-2b.d	9 Sep 2009 07:34:43 -0000
@@ -1,6 +1,7 @@
 #source: empty-address-2.s
 #ld: -Ttext 0x0000000 -Tdata 0x2000000 -T empty-address-2b.t
 #nm: -n
+#notarget: frv-*-*linux*
 #...
 0+0 T _start
 #...
Index: ld/testsuite/ld-scripts/empty-aligned.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/empty-aligned.d,v
retrieving revision 1.5
diff -u -p -r1.5 empty-aligned.d
--- ld/testsuite/ld-scripts/empty-aligned.d	18 Aug 2005 07:51:07 -0000	1.5
+++ ld/testsuite/ld-scripts/empty-aligned.d	9 Sep 2009 07:34:43 -0000
@@ -2,6 +2,7 @@
 #ld: -T empty-aligned.t
 #readelf: -l --wide
 #xfail: "hppa64-*-*"
+#notarget: frv-*-*linux*
 
 #...
 Program Headers:
Index: ld/testsuite/ld-scripts/sort_b_a-1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_a-1.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_a-1.d
--- ld/testsuite/ld-scripts/sort_b_a-1.d	8 Aug 2006 15:07:16 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_a-1.d	9 Sep 2009 07:34:43 -0000
@@ -3,7 +3,12 @@
 #name: --sort-section alignment
 #nm: -n
 
+#...
 0[0-9a-f]* t text3
+#...
 0[0-9a-f]* t text1
+#...
 0[0-9a-f]* t text
+#...
 0[0-9a-f]* t text2
+#pass
Index: ld/testsuite/ld-scripts/sort_b_a.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_a.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_a.d
--- ld/testsuite/ld-scripts/sort_b_a.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_a.d	9 Sep 2009 07:34:43 -0000
@@ -3,7 +3,12 @@
 #name: SORT_BY_ALIGNMENT
 #nm: -n
 
+#...
 0[0-9a-f]* t text3
+#...
 0[0-9a-f]* t text1
+#...
 0[0-9a-f]* t text
+#...
 0[0-9a-f]* t text2
+#pass
Index: ld/testsuite/ld-scripts/sort_b_a_a-1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_a_a-1.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_a_a-1.d
--- ld/testsuite/ld-scripts/sort_b_a_a-1.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_a_a-1.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT())
 #nm: -n
 
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text3a
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#pass
Index: ld/testsuite/ld-scripts/sort_b_a_a-2.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_a_a-2.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_a_a-2.d
--- ld/testsuite/ld-scripts/sort_b_a_a-2.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_a_a-2.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section alignment
 #nm: -n
 
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text3a
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#pass
Index: ld/testsuite/ld-scripts/sort_b_a_a-3.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_a_a-3.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_a_a-3.d
--- ld/testsuite/ld-scripts/sort_b_a_a-3.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_a_a-3.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT()) --sort-section name
 #nm: -n
 
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text3a
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#pass
Index: ld/testsuite/ld-scripts/sort_b_a_n-1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_a_n-1.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_a_n-1.d
--- ld/testsuite/ld-scripts/sort_b_a_n-1.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_a_n-1.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_ALIGNMENT(SORT_BY_NAME())
 #nm: -n
 
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text3a
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#pass
Index: ld/testsuite/ld-scripts/sort_b_a_n-2.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_a_n-2.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_a_n-2.d
--- ld/testsuite/ld-scripts/sort_b_a_n-2.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_a_n-2.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section name
 #nm: -n
 
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text3a
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#pass
Index: ld/testsuite/ld-scripts/sort_b_a_n-3.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_a_n-3.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_a_n-3.d
--- ld/testsuite/ld-scripts/sort_b_a_n-3.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_a_n-3.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_ALIGNMENT(SORT_BY_NAME()) --sort-section alignment
 #nm: -n
 
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text3a
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#pass
Index: ld/testsuite/ld-scripts/sort_b_n-1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_n-1.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_n-1.d
--- ld/testsuite/ld-scripts/sort_b_n-1.d	8 Aug 2006 15:07:16 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_n-1.d	9 Sep 2009 07:34:43 -0000
@@ -3,7 +3,12 @@
 #name: --sort-section name
 #nm: -n
 
+#...
 0[0-9a-f]* t text
+#...
 0[0-9a-f]* t text1
+#...
 0[0-9a-f]* t text2
+#...
 0[0-9a-f]* t text3
+#pass
Index: ld/testsuite/ld-scripts/sort_b_n.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_n.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_n.d
--- ld/testsuite/ld-scripts/sort_b_n.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_n.d	9 Sep 2009 07:34:43 -0000
@@ -3,7 +3,12 @@
 #name: SORT_BY_NAME
 #nm: -n
 
+#...
 0[0-9a-f]* t text
+#...
 0[0-9a-f]* t text1
+#...
 0[0-9a-f]* t text2
+#...
 0[0-9a-f]* t text3
+#pass
Index: ld/testsuite/ld-scripts/sort_b_n_a-1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_n_a-1.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_n_a-1.d
--- ld/testsuite/ld-scripts/sort_b_n_a-1.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_n_a-1.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_NAME(SORT_BY_ALIGNMENT())
 #nm: -n
 
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text3a
+#pass
Index: ld/testsuite/ld-scripts/sort_b_n_a-2.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_n_a-2.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_n_a-2.d
--- ld/testsuite/ld-scripts/sort_b_n_a-2.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_n_a-2.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
 #nm: -n
 
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text3a
+#pass
Index: ld/testsuite/ld-scripts/sort_b_n_a-3.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_n_a-3.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_n_a-3.d
--- ld/testsuite/ld-scripts/sort_b_n_a-3.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_n_a-3.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_NAME(SORT_BY_ALIGNMENT()) --sort-section alignment
 #nm: -n
 
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text3a
+#pass
Index: ld/testsuite/ld-scripts/sort_b_n_n-1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_n_n-1.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_n_n-1.d
--- ld/testsuite/ld-scripts/sort_b_n_n-1.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_n_n-1.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_NAME(SORT_BY_NAME())
 #nm: -n
 
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#...
 0[0-9a-f]* t text3a
+#...
 0[0-9a-f]* t text3b
+#pass
Index: ld/testsuite/ld-scripts/sort_b_n_n-2.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_n_n-2.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_n_n-2.d
--- ld/testsuite/ld-scripts/sort_b_n_n-2.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_n_n-2.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_NAME(SORT_BY_NAME()) --sort-section name
 #nm: -n
 
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#...
 0[0-9a-f]* t text3a
+#...
 0[0-9a-f]* t text3b
+#pass
Index: ld/testsuite/ld-scripts/sort_b_n_n-3.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_b_n_n-3.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_b_n_n-3.d
--- ld/testsuite/ld-scripts/sort_b_n_n-3.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_b_n_n-3.d	9 Sep 2009 07:34:43 -0000
@@ -4,11 +4,20 @@
 #name: SORT_BY_NAME(SORT_BY_NAME()) --sort-section alignment
 #nm: -n
 
+#...
 0[0-9a-f]* t texta
+#...
 0[0-9a-f]* t textb
+#...
 0[0-9a-f]* t text1a
+#...
 0[0-9a-f]* t text1b
+#...
 0[0-9a-f]* t text2a
+#...
 0[0-9a-f]* t text2b
+#...
 0[0-9a-f]* t text3b
+#...
 0[0-9a-f]* t text3a
+#pass
Index: ld/testsuite/ld-scripts/sort_no-1.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_no-1.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_no-1.d
--- ld/testsuite/ld-scripts/sort_no-1.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_no-1.d	9 Sep 2009 07:34:43 -0000
@@ -3,7 +3,12 @@
 #name: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
 #nm: -n
 
+#...
 0[0-9a-f]* t text
+#...
 0[0-9a-f]* t text2
+#...
 0[0-9a-f]* t text3
+#...
 0[0-9a-f]* t text1
+#pass
Index: ld/testsuite/ld-scripts/sort_no-2.d
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/sort_no-2.d,v
retrieving revision 1.1
diff -u -p -r1.1 sort_no-2.d
--- ld/testsuite/ld-scripts/sort_no-2.d	4 Oct 2004 16:45:51 -0000	1.1
+++ ld/testsuite/ld-scripts/sort_no-2.d	9 Sep 2009 07:34:43 -0000
@@ -3,7 +3,12 @@
 #name: no SORT_BY_NAME/SORT_BY_ALIGNMENT/SORT
 #nm: -n
 
+#...
 0[0-9a-f]* t text
+#...
 0[0-9a-f]* t text2
+#...
 0[0-9a-f]* t text3
+#...
 0[0-9a-f]* t text1
+#pass

-- 
Alan Modra
Australia Development Lab, IBM


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