mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-14 07:38:41 +00: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:
parent
2d07dfae31
commit
d44976c977
@ -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>
|
||||
|
||||
* ld-scripts/section-flags.exp: Pass --local-store 0:0 for
|
||||
|
@ -104,11 +104,19 @@ binutils_test strip "-shared" maxpage1
|
||||
binutils_test objcopy "" maxpage1
|
||||
binutils_test objcopy "-shared" maxpage1
|
||||
|
||||
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 "ia64-*-*"] } {
|
||||
set relotest no
|
||||
} else {
|
||||
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*"]
|
||||
|| (([istarget "i?86-*-linux*"]
|
||||
|| [istarget "i?86-*-gnu*"])
|
||||
&& ![istarget "*-*-*aout*"]
|
||||
@ -137,6 +145,8 @@ set tls_opts {
|
||||
|
||||
foreach testitem $tls_tests {
|
||||
foreach testopt $tls_opts {
|
||||
binutils_test objcopy $testopt $testitem
|
||||
if { ($relotest == "yes" || ![regexp "\-z relro" "$testopt"]) } {
|
||||
binutils_test objcopy $testopt $testitem
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user