Setting CC_FOR_TARGET from the environment CC was just plain wrong,
and no doubt the reason these tests were only run natively.
* testsuite/binutils-all/compress.exp (test_gnu_debuglink): Don't
set CC_FOR_TARGET. Run test non-native.
* testsuite/binutils-all/objdump.exp (test_build_id_debuglink):
Likewise.
(test_follow_debuglink): Run test non-native.
+2018-05-31 Alan Modra <amodra@gmail.com>
+
+ * testsuite/binutils-all/compress.exp (test_gnu_debuglink): Don't
+ set CC_FOR_TARGET. Run test non-native.
+ * testsuite/binutils-all/objdump.exp (test_build_id_debuglink):
+ Likewise.
+ (test_follow_debuglink): Run test non-native.
+
2018-05-30 Ant Bikeneev <ant.bikineev@gmail.com>
PR 23107
global srcdir
global subdir
global env
- global CC_FOR_TARGET
global STRIP
global OBJCOPY
global OBJDUMP
set test "gnu-debuglink"
- if {![info exists CC_FOR_TARGET]} {
- set CC_FOR_TARGET $env(CC)
- }
- if { $CC_FOR_TARGET == "" } {
- unsupported $test
- return
- }
if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog exectuable debug] != "" } {
unsupported "$test (build)"
}
}
-if {[isnative] && [is_elf_format]} then {
+if {[is_elf_format]} then {
test_gnu_debuglink
}
global srcdir
global subdir
global env
- global CC_FOR_TARGET
global STRIP
global OBJCOPY
global OBJDUMP
global CFLAGS_FOR_TARGET
set test "build-id-debuglink"
- if {![info exists CC_FOR_TARGET]} {
- set CC_FOR_TARGET $env(CC)
- }
- if { $CC_FOR_TARGET == "" } {
- unsupported $test
- return
- }
# Use a fixed build-id.
if { [info exists CFLAGS_FOR_TARGET] } {
}
}
-if {[isnative] && [is_elf_format]} then {
+if {[is_elf_format]} then {
test_build_id_debuglink
}
set got [remote_exec host "rm tmpdir/linkdebug.debug"]
}
-if {[isnative] && [is_elf_format]} then {
+if {[is_elf_format]} then {
test_follow_debuglink
}