diff options
author | Bill Cox <bill@cygnus> | 1994-04-11 23:17:18 +0000 |
---|---|---|
committer | Bill Cox <bill@cygnus> | 1994-04-11 23:17:18 +0000 |
commit | 099c286e7440447b4c7d9e1ced7b86ffaa255c29 (patch) | |
tree | 60a2b627693df63e457b3b79fe6905e2a341d35a /binutils/testsuite | |
parent | bf08d1e26655066aa16637662bb4eb2a2e3a3aad (diff) | |
download | gdb-099c286e7440447b4c7d9e1ced7b86ffaa255c29.zip gdb-099c286e7440447b4c7d9e1ced7b86ffaa255c29.tar.gz gdb-099c286e7440447b4c7d9e1ced7b86ffaa255c29.tar.bz2 |
* Makefile.in (check): Set TCL_LIBRARY for runtest.
Diffstat (limited to 'binutils/testsuite')
-rw-r--r-- | binutils/testsuite/ChangeLog | 14 | ||||
-rw-r--r-- | binutils/testsuite/Makefile.in | 27 |
2 files changed, 40 insertions, 1 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 231d82a..ce0a210 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,17 @@ +Mon Apr 11 10:31:00 1994 Bill Cox (bill@rtl.cygnus.com) + + * Makefile.in (check): Set TCL_LIBRARY for runtest. + +Mon Feb 14 19:34:03 1994 Rob Savoye (rob@darkstar.cygnus.com) + + * Makefile.in: Use new config features of DejaGnu in site.exp + file. "Make check" should now work for all crosses. + +Fri Jan 28 18:00:29 1994 Ken Raeburn (raeburn@cujo.cygnus.com) + + * binutils.all/objdump.exp: In usage message, accept + "section-name" as well as "section_name". + Mon Jan 17 16:57:02 1994 Ken Raeburn (raeburn@cujo.cygnus.com) * binutils.all/objdump.exp: Trim list of format names expected, diff --git a/binutils/testsuite/Makefile.in b/binutils/testsuite/Makefile.in index 098a490..55a135f 100644 --- a/binutils/testsuite/Makefile.in +++ b/binutils/testsuite/Makefile.in @@ -1,3 +1,20 @@ +# Makefile for regression testing the GNU binary utilities. +# Copyright (C) 1993, 1994 Free Software Foundation, Inc. + +# This program 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. + srcdir = . prefix = /usr/local @@ -68,7 +85,9 @@ EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; \ LINK= ln -s SUBDIRS= -RUNTEST = runtest +RUNTEST = `if [ -f ${srcdir}/../../dejagnu/runtest ] ; \ + then echo ${srcdir}/../../dejagnu/runtest ; \ + else echo runtest ; fi` RUNTESTFLAGS = FLAGS_TO_PASS = \ "CC=$(CC)" \ @@ -91,6 +110,12 @@ install-info: $(MAKE) subdir_do DO=install-info "DODIRS=$(INFODIRS)" $(FLAGS_TO_PASS) check: site.exp all + rootme=`pwd`; export rootme; \ + srcdir=${srcdir} ; export srcdir ; \ + EXPECT=${EXPECT} ; export EXPECT ; \ + if [ -f $${rootme}/../../expect/expect ] ; then \ + TCL_LIBRARY=$${srcdir}/../../tcl/library ; \ + export TCL_LIBRARY ; fi ; \ $(RUNTEST) $(RUNTESTFLAGS) site.exp: ./config.status Makefile |