diff options
author | Egor Duda <deo@logos-m.ru> | 2001-03-09 15:39:28 +0000 |
---|---|---|
committer | Egor Duda <deo@logos-m.ru> | 2001-03-09 15:39:28 +0000 |
commit | 85057d174fa888d8c91bcb0e7e9f273c2fbad275 (patch) | |
tree | 4608c1512411ee18cf7ac994bb9eb1afa0518c60 | |
parent | d775a1ab081315aec3151b69276cf709c2496317 (diff) | |
download | cygnal-85057d174fa888d8c91bcb0e7e9f273c2fbad275.tar.gz cygnal-85057d174fa888d8c91bcb0e7e9f273c2fbad275.tar.bz2 cygnal-85057d174fa888d8c91bcb0e7e9f273c2fbad275.zip |
* config/default.exp: Remove unneeded debugging output.
* Makefile.in: Use correct path to find dejagnu in local tree.
-rw-r--r-- | winsup/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/testsuite/Makefile.in | 4 | ||||
-rw-r--r-- | winsup/testsuite/config/default.exp | 1 |
3 files changed, 7 insertions, 3 deletions
diff --git a/winsup/testsuite/ChangeLog b/winsup/testsuite/ChangeLog index 2966ef4e4..af6e7d65a 100644 --- a/winsup/testsuite/ChangeLog +++ b/winsup/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2001-03-09 Egor Duda <deo@logos-m.ru> + + * config/default.exp: Remove unneeded debugging output. + * Makefile.in: Use correct path to find dejagnu in local tree. + 2000-09-06 Egor Duda <deo@logos-m.ru> Add 'const' qualifiers where needed to avoid compiler warnings. diff --git a/winsup/testsuite/Makefile.in b/winsup/testsuite/Makefile.in index 5e523d9eb..2c56a5877 100644 --- a/winsup/testsuite/Makefile.in +++ b/winsup/testsuite/Makefile.in @@ -78,8 +78,8 @@ EXPECT = `if [ -f $${rootme}/../../expect/expect$(EXEEXT) ] ; then \ echo $${rootme}/../../expect/expect$(EXEEXT) ; \ else echo expect ; fi` -RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \ - echo $${srcdir}/../dejagnu/runtest ; \ +RUNTEST = `if [ -f $${srcdir}/../../dejagnu/runtest ] ; then \ + echo $${srcdir}/../../dejagnu/runtest ; \ else echo runtest; fi` RUNTESTFLAGS = diff --git a/winsup/testsuite/config/default.exp b/winsup/testsuite/config/default.exp index 5bbaf8d1f..695808fc9 100644 --- a/winsup/testsuite/config/default.exp +++ b/winsup/testsuite/config/default.exp @@ -1,7 +1,6 @@ proc winsup_version {} { global env global rootme - puts stderr "root=$rootme" clone_output "\n[exec grep ^%%% $rootme/../cygwin/new-cygwin1.dll]\n" if { [info exists env(CYGWIN)] } { clone_output "CYGWIN=$env(CYGWIN)\n" |