aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2003-06-03 15:28:36 +0000
committerH.J. Lu <hjl.tools@gmail.com>2003-06-03 15:28:36 +0000
commitb814bbcbee2441a73e1dabd990f8590862aaf9fe (patch)
tree55ced70916c1d312b44c3c8a4cafd6a2e3493124 /ld
parentcb12384428d4fbca3c26b4dfd8f4d2ff2d4e2132 (diff)
downloadbinutils-b814bbcbee2441a73e1dabd990f8590862aaf9fe.zip
binutils-b814bbcbee2441a73e1dabd990f8590862aaf9fe.tar.gz
binutils-b814bbcbee2441a73e1dabd990f8590862aaf9fe.tar.bz2
2003-06-03 H.J. Lu <hongjiu.lu@intel.com>
* ld-elfcomm/elfcomm.exp: Mark tests untested if compiler is not available.
Diffstat (limited to 'ld')
-rw-r--r--ld/testsuite/ChangeLog5
-rw-r--r--ld/testsuite/ld-elfcomm/elfcomm.exp35
2 files changed, 29 insertions, 11 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog
index e3152e3..8cdb4c4 100644
--- a/ld/testsuite/ChangeLog
+++ b/ld/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-03 H.J. Lu <hongjiu.lu@intel.com>
+
+ * ld-elfcomm/elfcomm.exp: Mark tests untested if compiler is
+ not available.
+
2003-06-02 Fabrizio Gennari <fabrizio.ge@tiscalinet.it>
* ld-cygwin: New directory.
diff --git a/ld/testsuite/ld-elfcomm/elfcomm.exp b/ld/testsuite/ld-elfcomm/elfcomm.exp
index 88cfd89..80ede64 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
}