* ld-plugin/plugin.exp: Mark tests UNSUPPORTED, not UNRESOLVED, if
no suitable target compiler is available.
This commit is contained in:
parent
8991e9fa24
commit
e0ae9e28cc
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-10-20 Dave Korn <dave.korn.cygwin@gmail.com>
|
||||||
|
|
||||||
|
* ld-plugin/plugin.exp: Mark tests UNSUPPORTED, not UNRESOLVED, if
|
||||||
|
no suitable target compiler is available.
|
||||||
|
|
||||||
2010-10-16 Kai Tietz <kai.tietz@onevision.com>
|
2010-10-16 Kai Tietz <kai.tietz@onevision.com>
|
||||||
|
|
||||||
* ld-pe/pe-run2.exp: Prefix --enable-auto-import by -Wl.
|
* ld-pe/pe-run2.exp: Prefix --enable-auto-import by -Wl.
|
||||||
|
|
|
@ -26,9 +26,11 @@ if ![check_plugin_api_available] {
|
||||||
|
|
||||||
# And a compiler to be available.
|
# And a compiler to be available.
|
||||||
set can_compile 1
|
set can_compile 1
|
||||||
|
set failure_kind "unresolved"
|
||||||
if { [which $CC] == 0 } {
|
if { [which $CC] == 0 } {
|
||||||
# Don't fail immediately,
|
# Don't fail immediately,
|
||||||
set can_compile 0
|
set can_compile 0
|
||||||
|
set failure_kind "unsupported"
|
||||||
}
|
}
|
||||||
|
|
||||||
pass "plugin API enabled"
|
pass "plugin API enabled"
|
||||||
|
@ -154,11 +156,11 @@ set plugin_extra_elf_tests [list \
|
||||||
|
|
||||||
if { !$can_compile || $failed_compile } {
|
if { !$can_compile || $failed_compile } {
|
||||||
foreach testitem $plugin_tests {
|
foreach testitem $plugin_tests {
|
||||||
unresolved [lindex $testitem 0]
|
$failure_kind [lindex $testitem 0]
|
||||||
}
|
}
|
||||||
if { [is_elf_format] } {
|
if { [is_elf_format] } {
|
||||||
foreach testitem $plugin_extra_elf_tests {
|
foreach testitem $plugin_extra_elf_tests {
|
||||||
unresolved [lindex $testitem 0]
|
$failure_kind [lindex $testitem 0]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue