From: Hans-Peter Nilsson Date: Mon, 14 Jan 2008 19:52:43 +0000 (+0000) Subject: * ld-gc/gc.exp (test_gc): Let missing C compiler make tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3becfab9d2c41dba985c184dfd0df46314ef6b13;p=binutils-gdb.git * ld-gc/gc.exp (test_gc): Let missing C compiler make tests "untested" instead of "failed". --- diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index c11355cc691..8fd1852083b 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-01-14 Tristan Gingold + + * ld-gc/gc.exp (test_gc): Let missing C compiler make tests + "untested" instead of "failed". + 2008-01-10 Tristan Gingold * lib/ld-lib.exp (check_gc_sections_available): Now available on diff --git a/ld/testsuite/ld-gc/gc.exp b/ld/testsuite/ld-gc/gc.exp index 68a0ba11642..acadcba38b7 100644 --- a/ld/testsuite/ld-gc/gc.exp +++ b/ld/testsuite/ld-gc/gc.exp @@ -27,7 +27,9 @@ if ![check_gc_sections_available] { set cflags "-ffunction-sections -fdata-sections" set objfile "tmpdir/gc.o" -ld_compile "$CC -c $CFLAGS $cflags" $srcdir/$subdir/gc.c $objfile +if { [is_remote host] || [which $CC] } { + ld_compile "$CC -c $CFLAGS $cflags" $srcdir/$subdir/gc.c $objfile +} proc test_gc { testname filename linker ldflags} { global nm @@ -36,6 +38,11 @@ proc test_gc { testname filename linker ldflags} { global nm_output global objfile + if ![file readable $objfile ] { + untested $testname + return + } + set outfile "tmpdir/$filename" if ![ld_simple_link $linker $outfile "-L$srcdir/$subdir $ldflags $objfile"] {