From: H.J. Lu Date: Tue, 3 Jun 2003 15:28:36 +0000 (+0000) Subject: 2003-06-03 H.J. Lu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b814bbcbee2441a73e1dabd990f8590862aaf9fe;p=binutils-gdb.git 2003-06-03 H.J. Lu * ld-elfcomm/elfcomm.exp: Mark tests untested if compiler is not available. --- diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index e3152e32ea5..8cdb4c49fca 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2003-06-03 H.J. Lu + + * ld-elfcomm/elfcomm.exp: Mark tests untested if compiler is + not available. + 2003-06-02 Fabrizio Gennari * ld-cygwin: New directory. diff --git a/ld/testsuite/ld-elfcomm/elfcomm.exp b/ld/testsuite/ld-elfcomm/elfcomm.exp index 88cfd898e43..80ede642aab 100644 --- a/ld/testsuite/ld-elfcomm/elfcomm.exp +++ b/ld/testsuite/ld-elfcomm/elfcomm.exp @@ -25,6 +25,20 @@ if ![is_elf_format] { return } +set test1 "size/aligment change of common symbols" +set test1w1 "$test1 (warning 1)" +set test1w2 "$test1 (warning 2)" +set test1c1 "$test1 (change 1)" +set test1c2 "$test1 (change 2)" + +if { [which $CC] == 0 } { + untested $test1w1 + untested $test1w2 + untested $test1c1 + untested $test1c2 + return +} + proc dump_common1 { testname } { global exec_output @@ -41,7 +55,6 @@ proc dump_common1 { testname } { return 1 } -set test1 "size/aligment change of common symbols" if { ![ld_compile "$CC $CFLAGS" $srcdir/$subdir/common1a.c tmpdir/common1a.o] || ![ld_compile "$CC $CFLAGS" $srcdir/$subdir/common1b.c tmpdir/common1b.o] } { unresolved $test1 @@ -52,32 +65,32 @@ global ld global link_output if { [ld_simple_link $ld tmpdir/common1.o "-r tmpdir/common1a.o tmpdir/common1b.o"] } { - unresolved "$test1 (warning 1)" + unresolved $test1w1 return } if { ![regexp "Warning: alignment (\[0-9\]+) of symbol \`_?foo1\' in tmpdir/common1b.o is smaller than 64 in tmpdir/common1a.o" $link_output] || ![regexp "Warning: size of symbol \`_?foo1\' changed from 2 in tmpdir/common1a.o to 21 in tmpdir/common1b.o" $link_output] } { - fail "$test1 (warning 1)" + fail $test1w1 } else { - pass "$test1 (warning 1)" + pass $test1w1 } -if { [dump_common1 "$test1 (change 1)"] } { - pass "$test1 (change 1)" +if { [dump_common1 $test1c1] } { + pass $test1c1 } if { [ld_simple_link $ld tmpdir/common1.o "-r tmpdir/common1b.o tmpdir/common1a.o"] } { - unresolved "$test1 (warning 2)" + unresolved $test1w2 return } if { ![regexp "Warning: alignment (\[0-9\]+) of symbol \`_?foo1\' in tmpdir/common1b.o is smaller than 64 in tmpdir/common1a.o" $link_output] } { - fail "$test1 (warning 2)" + fail $test1w2 } else { - pass "$test1 (warning 2)" + pass $test1w2 } -if { [dump_common1 "$test1 (change 2)"] } { - pass "$test1 (change 2)" +if { [dump_common1 $test1c2] } { + pass $test1c2 }