From: Stefano Lattarini Date: Wed, 25 Jul 2012 16:49:50 +0000 (+0200) Subject: test init: remove a couple of paranoid sanity checks X-Git-Tag: v1.12.3~31^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bb312c8afbb7eb15bd794c638d72b4dd15dc4eb;p=thirdparty%2Fautomake.git test init: remove a couple of paranoid sanity checks * t/ax/test-init.sh: Here, about 'am_top_srcdir' and 'am_top_builddir'; the values of those variables are AC_SUBST'd, so it's nigh impossible for the to be wrong or get "messed up". Signed-off-by: Stefano Lattarini --- diff --git a/t/ax/test-init.sh b/t/ax/test-init.sh index 5376b4700..95a42e009 100644 --- a/t/ax/test-init.sh +++ b/t/ax/test-init.sh @@ -23,25 +23,6 @@ set -e -## --------------------- ## -## Early sanity checks. ## -## --------------------- ## - -# Ensure $am_top_srcdir is set correctly. -test -f "$am_top_srcdir/automake.in" || { - echo "$me: $am_top_srcdir/automake.in not found," \ - "check \$am_top_srcdir" >&2 - exit 99 -} - -# Ensure $am_top_builddir is set correctly. -test -f "$am_top_builddir/automake" || { - echo "$me: $am_top_builddir/automake not found," \ - "check \$am_top_builddir" >&2 - exit 99 -} - - ## ------------------ ## ## Early variables. ## ## ------------------ ##