mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-01 01:45:51 +08:00
Skip relro tests on ia64.
2011-07-14 H.J. Lu <hongjiu.lu@intel.com> * ld-elf/binutils.exp: Skip relro tests on ia64.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2011-07-14 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* ld-elf/binutils.exp: Skip relro tests on ia64.
|
||||||
|
|
||||||
2011-07-14 Alan Modra <amodra@gmail.com>
|
2011-07-14 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
* ld-scripts/section-flags.exp: Pass --local-store 0:0 for
|
* ld-scripts/section-flags.exp: Pass --local-store 0:0 for
|
||||||
|
@ -104,10 +104,18 @@ binutils_test strip "-shared" maxpage1
|
|||||||
binutils_test objcopy "" maxpage1
|
binutils_test objcopy "" maxpage1
|
||||||
binutils_test objcopy "-shared" maxpage1
|
binutils_test objcopy "-shared" maxpage1
|
||||||
|
|
||||||
binutils_test strip "-z relro" relro1
|
if { [istarget "ia64-*-*"] } {
|
||||||
binutils_test strip "-z relro -shared" relro1
|
set relotest no
|
||||||
binutils_test objcopy "-z relro" relro1
|
} else {
|
||||||
binutils_test objcopy "-z relro -shared" relro1
|
set relotest yes
|
||||||
|
}
|
||||||
|
|
||||||
|
if { $relotest == "yes" } {
|
||||||
|
binutils_test strip "-z relro" relro1
|
||||||
|
binutils_test strip "-z relro -shared" relro1
|
||||||
|
binutils_test objcopy "-z relro" relro1
|
||||||
|
binutils_test objcopy "-z relro -shared" relro1
|
||||||
|
}
|
||||||
if { ([istarget "i?86-*-elf*"]
|
if { ([istarget "i?86-*-elf*"]
|
||||||
|| (([istarget "i?86-*-linux*"]
|
|| (([istarget "i?86-*-linux*"]
|
||||||
|| [istarget "i?86-*-gnu*"])
|
|| [istarget "i?86-*-gnu*"])
|
||||||
@ -137,6 +145,8 @@ set tls_opts {
|
|||||||
|
|
||||||
foreach testitem $tls_tests {
|
foreach testitem $tls_tests {
|
||||||
foreach testopt $tls_opts {
|
foreach testopt $tls_opts {
|
||||||
binutils_test objcopy $testopt $testitem
|
if { ($relotest == "yes" || ![regexp "\-z relro" "$testopt"]) } {
|
||||||
|
binutils_test objcopy $testopt $testitem
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user