[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
FYI: Revamping Autotest, take 3
From: |
Akim Demaille |
Subject: |
FYI: Revamping Autotest, take 3 |
Date: |
13 Nov 2001 12:40:16 +0100 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Artificial Intelligence) |
Adjusting Autoconf's test suite.
Index: ChangeLog
from Akim Demaille <address@hidden>
* tests/tools.at: Use absolute paths, since we are no longer run
in place.
Index: tests/tools.at
===================================================================
RCS file: /cvs/autoconf/tests/tools.at,v
retrieving revision 1.57
diff -u -u -r1.57 tools.at
--- tests/tools.at 2001/10/08 08:26:43 1.57
+++ tests/tools.at 2001/11/13 11:47:53
@@ -73,12 +73,12 @@
# Specify the path to the tool, some shells don't honor PATH when
# running `sh PROG'.
-AT_CHECK([/bin/sh -n ../bin/autoconf], 0)
+AT_CHECK([/bin/sh -n $top_buildpath/bin/autoconf], 0)
# These are not built, they are in the src tree.
-AT_CHECK([/bin/sh -n $top_srcdir/config/install-sh], 0)
-AT_CHECK([/bin/sh -n $top_srcdir/config/mkinstalldirs], 0)
-AT_CHECK([/bin/sh -n $top_srcdir/config/missing], 0)
+AT_CHECK([/bin/sh -n $top_srcpath/config/install-sh], 0)
+AT_CHECK([/bin/sh -n $top_srcpath/config/mkinstalldirs], 0)
+AT_CHECK([/bin/sh -n $top_srcpath/config/missing], 0)
AT_CLEANUP
@@ -96,7 +96,7 @@
# | ./autom4te syntax OK
# Ignore it, it might change between releases.
m4_define([AT_CHECK_PERL_SYNTAX],
-[AT_CHECK([autom4te_perllibdir=$top_srcdir/lib $PERL -c ../bin/$1],
+[AT_CHECK([autom4te_perllibdir=$top_srcpath/lib $PERL -c
$top_buildpath/bin/$1],
0, [], [ignore])])
AT_CHECK_PERL_SYNTAX([autoheader])
- FYI: Revamping Autotest, take 3,
Akim Demaille <=