summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2006-05-17 02:20:15 +0000
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>2006-05-17 02:20:15 +0000
commitcf51635a478314d4cc70e0f79ac5b6b771b8efa7 (patch)
tree3dd1414f15ff00222e50e350e30f287de39261fd /tests
parentb66a11a01cf4bc64b86c4abd1bb0c14f84c838c9 (diff)
downloadautoconf-cf51635a478314d4cc70e0f79ac5b6b771b8efa7.tar.gz
* bin/autoreconf.in: Pass the directory argument to
`require_configure_ac'. Fix comment. * tests/torture.at (Configuring subdirectories): Expose this. Reported by Olly Betts.
Diffstat (limited to 'tests')
-rw-r--r--tests/torture.at8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/torture.at b/tests/torture.at
index 919fca8e..9d58211b 100644
--- a/tests/torture.at
+++ b/tests/torture.at
@@ -853,6 +853,14 @@ top_srcdir=../../../inner
prefix=/good
])
+# Make sure we can run autoreconf on a subdirectory
+rm -f configure configure.in
+AT_CHECK([autoreconf inner], [], [], [ignore])
+
+# Make sure we can pass a configure.ac name
+AT_CHECK([cd inner && autoreconf configure.in], [], [], [ignore])
+AT_CHECK([autoreconf inner/configure.in], [], [], [ignore])
+
AT_CLEANUP