aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1995-06-24 02:48:48 +0000
committerSteve Chamberlain <sac@cygnus>1995-06-24 02:48:48 +0000
commitcd5431634a3af614ecc8020a478666582080c58b (patch)
treeaa1ac6d9a832c29ba135de3a2b85a22c3ee5e1db /ld/testsuite
parent8a7143f461b36ad82db0d8880f0e2690206b631f (diff)
downloadgdb-cd5431634a3af614ecc8020a478666582080c58b.zip
gdb-cd5431634a3af614ecc8020a478666582080c58b.tar.gz
gdb-cd5431634a3af614ecc8020a478666582080c58b.tar.bz2
Fix filenames with two dots.
Diffstat (limited to 'ld/testsuite')
-rw-r--r--ld/testsuite/ld-versados/.Sanitize4
-rw-r--r--ld/testsuite/ld-versados/t1.outok (renamed from ld/testsuite/ld-versados/t1.out.ok)0
-rw-r--r--ld/testsuite/ld-versados/t2.outok (renamed from ld/testsuite/ld-versados/t2.out.ok)0
-rw-r--r--ld/testsuite/ld-versados/versados.exp95
4 files changed, 97 insertions, 2 deletions
diff --git a/ld/testsuite/ld-versados/.Sanitize b/ld/testsuite/ld-versados/.Sanitize
index 74edaf9..b25c285 100644
--- a/ld/testsuite/ld-versados/.Sanitize
+++ b/ld/testsuite/ld-versados/.Sanitize
@@ -26,12 +26,12 @@ Things-to-keep:
t1-1.ro
t1-2.ro
t1.ld
-t1.out.ok
+t1.outok
t2-1.ro
t2-2.ro
t2-3.ro
t2.ld
-t2.out.ok
+t2.outok
versados.exp
Things-to-lose:
diff --git a/ld/testsuite/ld-versados/t1.out.ok b/ld/testsuite/ld-versados/t1.outok
index 3984b94..3984b94 100644
--- a/ld/testsuite/ld-versados/t1.out.ok
+++ b/ld/testsuite/ld-versados/t1.outok
diff --git a/ld/testsuite/ld-versados/t2.out.ok b/ld/testsuite/ld-versados/t2.outok
index 03f24a5..03f24a5 100644
--- a/ld/testsuite/ld-versados/t2.out.ok
+++ b/ld/testsuite/ld-versados/t2.outok
diff --git a/ld/testsuite/ld-versados/versados.exp b/ld/testsuite/ld-versados/versados.exp
new file mode 100644
index 0000000..55fc490
--- /dev/null
+++ b/ld/testsuite/ld-versados/versados.exp
@@ -0,0 +1,95 @@
+# Expect script for ld-versados tests
+# Copyright (C) 1995 Free Software Foundation
+#
+# This file is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+#
+# Written by Steve Chamberlain (sac@cygnus.com)
+#
+
+# Make sure that ld can read versados images and
+# generate binaries which are identical to the customer's
+# old method.
+
+# This test can only be run if ld generates native executables.
+
+# This test can only be run on 68k coff targets
+# Square bracket expressions seem to confuse istarget.
+if { ![istarget m68k-*-coff*] } then {
+ return
+}
+
+set testname "LD VERSADOS"
+
+
+proc inspect { whichone } {
+ global objdump
+ global exec_output
+ global srcdir
+ global subdir
+ global testname
+
+ send_log "$objdump -s tmpdir/$whichone.out >tmpdir/$whichone.dump\n"
+ catch "exec $objdump -s tmpdir/$whichone.out | grep -v srec >tmpdir/$whichone.dump" exec_output
+
+ if ![string match "" $exec_output] {
+ send_log "$exec_output\n"
+ verbose $exec_output
+ unresolved $testname
+ return
+ }
+
+ send_log "$objdump -s $srcdir$subdir/$whichone.outok >tmpdir/$whichone.dumpok\n"
+ catch "exec $objdump -s $srcdir$subdir/$whichone.outok | grep -v srec >tmpdir/$whichone.dumpok" exec_output
+
+ if ![string match "" $exec_output] {
+ send_log "$exec_output\n"
+ verbose $exec_output
+ unresolved $testname
+ return
+ }
+
+ # compare it with the correct output
+ catch "exec diff tmpdir/$whichone.dump tmpdir/$whichone.dumpok" exec_output
+ if ![string match "" $exec_output] {
+ send_log "$exec_output\n"
+ verbose $exec_output
+ fail $testname
+ return
+ }
+
+}
+
+if ![ld_simple_link $ld tmpdir/t1.out \
+ " -T $srcdir$subdir/t1.ld $srcdir$subdir/t1-1.ro $srcdir$subdir/t1-2.ro"] {
+ fail $testname
+} else {
+ # Get a dump of what we've got, and what we should have
+ inspect t1
+}
+
+
+if ![ld_simple_link $ld tmpdir/t2.out \
+ " -T $srcdir$subdir/t2.ld $srcdir$subdir/t2-2.ro \
+ $srcdir$subdir/t2-1.ro $srcdir$subdir/t2-3.ro"] {
+ fail $testname
+} else {
+ # Get a dump of what we've got, and what we should have
+ inspect t2
+}
+
+pass $testname
+
+
+