summaryrefslogtreecommitdiff
path: root/ndb/test
diff options
context:
space:
mode:
authorunknown <joreland@mysql.com>2005-05-25 09:22:07 +0200
committerunknown <joreland@mysql.com>2005-05-25 09:22:07 +0200
commite14d6f80f2d3cb5e9491326b80827fc02a871857 (patch)
treedcce7b82881a0f2f89defbcfe9bfba6eae904aea /ndb/test
parent1b927d480ea7b46a2bc5f9494c56598ad4b8e9d1 (diff)
downloadmariadb-git-e14d6f80f2d3cb5e9491326b80827fc02a871857.tar.gz
ndb autotest
adopt to changes in auto*tools ndb/test/run-test/ndb-autotest.sh: adopt to changes in auto*tools
Diffstat (limited to 'ndb/test')
-rwxr-xr-xndb/test/run-test/ndb-autotest.sh17
1 files changed, 11 insertions, 6 deletions
diff --git a/ndb/test/run-test/ndb-autotest.sh b/ndb/test/run-test/ndb-autotest.sh
index f1c83f079cd..2b073b986cd 100755
--- a/ndb/test/run-test/ndb-autotest.sh
+++ b/ndb/test/run-test/ndb-autotest.sh
@@ -70,14 +70,19 @@ if [ "$build" ]
then
cd $dst_place
rm -rf $run_dir/*
- aclocal; autoheader; autoconf; automake
- if [ -d storage ]
+ if [ -x BUILD/autorun.sh ]
then
- (cd storage/innobase; aclocal; autoheader; autoconf; automake)
- (cd storage/bdb/dist; sh s_all)
+ ./BUILD/autorun.sh
else
- (cd innobase; aclocal; autoheader; autoconf; automake)
- (cd bdb/dist; sh s_all)
+ aclocal; autoheader; autoconf; automake
+ if [ -d storage ]
+ then
+ (cd storage/innobase; aclocal; autoheader; autoconf; automake)
+ (cd storage/bdb/dist; sh s_all)
+ else
+ (cd innobase; aclocal; autoheader; autoconf; automake)
+ (cd bdb/dist; sh s_all)
+ fi
fi
eval $configure --prefix=$run_dir
make