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] | |
Hi!
I applied the following to fix some issues that crept in while I was not
looking. Roland, based on surrounding code, at least the stack exec and
stack size ones should probably be enabled for NACL, too?
* ld-elf/elf.exp (stack exec, stack size): Run for any GNU target.
* ld-elf/maxpage3c.d: Run for any x86 GNU target.
* ld-elf/maxpage4.d: Likewise.
* ld-elf/maxpage5.d: Likewise.
* ld-i386/export-class.exp: Likewise.
diff --git ld/testsuite/ld-elf/elf.exp ld/testsuite/ld-elf/elf.exp
index a33e3b6..8652131 100644
--- ld/testsuite/ld-elf/elf.exp
+++ ld/testsuite/ld-elf/elf.exp
@@ -126,7 +126,8 @@ if { [check_gc_sections_available] && ![istarget "v850-*-*"] } {
}
}
-if { [istarget *-*-*linux*] } {
+if { [istarget *-*-linux*]
+ || [istarget *-*-gnu*] } {
run_ld_link_tests {
{"stack exec" "-z execstack" "" {stack.s}
{{readelf {-Wl} stack-exec.rd}} "stack-exec.exe"}
diff --git ld/testsuite/ld-elf/maxpage3c.d ld/testsuite/ld-elf/maxpage3c.d
index 66fef32..354a8b9 100644
--- ld/testsuite/ld-elf/maxpage3c.d
+++ ld/testsuite/ld-elf/maxpage3c.d
@@ -2,7 +2,7 @@
#as: --32
#ld: -m elf_i386 -z max-page-size=0x10000000 -T maxpage3.t
#readelf: -lS --wide
-#target: x86_64-*-linux* i?86-*-linux-gnu
+#target: x86_64-*-linux* i?86-*-linux-gnu i?86-*-gnu*
#...
\[[ 0-9]+\] \.data[ \t]+PROGBITS[ \t]+0*10000000[ \t]+[ \t0-9a-f]+WA?.*
diff --git ld/testsuite/ld-elf/maxpage4.d ld/testsuite/ld-elf/maxpage4.d
index cde43d7..a08e856 100644
--- ld/testsuite/ld-elf/maxpage4.d
+++ ld/testsuite/ld-elf/maxpage4.d
@@ -2,7 +2,7 @@
#as: --32
#ld: -z max-page-size=0x200000 -T maxpage4.t
#readelf: -l --wide
-#target: x86_64-*-linux* i?86-*-linux-gnu
+#target: x86_64-*-linux* i?86-*-linux-gnu i?86-*-gnu*
#...
LOAD+.*0x200000
diff --git ld/testsuite/ld-elf/maxpage5.d ld/testsuite/ld-elf/maxpage5.d
index bcbd39c..9d9b57a 100644
--- ld/testsuite/ld-elf/maxpage5.d
+++ ld/testsuite/ld-elf/maxpage5.d
@@ -3,7 +3,7 @@
#ld: -z max-page-size=0x200000 -T maxpage5.t
#objcopy_linked_file: -R .foo
#readelf: -l --wide
-#target: x86_64-*-linux* i?86-*-linux-gnu
+#target: x86_64-*-linux* i?86-*-linux-gnu i?86-*-gnu*
#...
Program Headers:
diff --git ld/testsuite/ld-i386/export-class.exp ld/testsuite/ld-i386/export-class.exp
index cd96b4b..9dedd90 100644
--- ld/testsuite/ld-i386/export-class.exp
+++ ld/testsuite/ld-i386/export-class.exp
@@ -29,9 +29,8 @@ if { ![is_elf_format] } {
return
}
-# Exclude non-Linux targets; feel free to include your favorite one
-# if you like.
-if { ![istarget i?86-*-linux*] } {
+if { !([istarget i?86-*-linux*]
+ || [istarget i?86-*-gnu*]) } {
return
}
GrÃÃe,
Thomas
Attachment:
pgp00000.pgp
Description: PGP signature
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |