diff options
author | unknown <lenz@mysql.com> | 2004-07-05 07:48:09 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2004-07-05 07:48:09 +0200 |
commit | 298ce27e9290058e4ebee49e751f54426d39f549 (patch) | |
tree | 58a2e41bdb251c36670dd83878f40cadfae2b047 /mysql-test | |
parent | 41b04a9b1eea5828179be8316364c681388fce95 (diff) | |
download | mariadb-git-298ce27e9290058e4ebee49e751f54426d39f549.tar.gz |
- fixed typo in mysql-test/ndb/ndbcluster.sh that caused a
"test: argument expected" error when trying to run the NDB test
suite on Solaris
mysql-test/ndb/ndbcluster.sh:
- fixed typo that caused a "test: argument expected" error when trying
to run the NDB test suite on Solaris
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/ndb/ndbcluster.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/ndb/ndbcluster.sh b/mysql-test/ndb/ndbcluster.sh index e51f6f6b076..4afbe5cf3d7 100644 --- a/mysql-test/ndb/ndbcluster.sh +++ b/mysql-test/ndb/ndbcluster.sh @@ -98,7 +98,7 @@ if [ ! -x $exec_ndb ]; then echo "$exec_ndb missing" exit 1 fi -if [ ! -x $exec_mgmtsrv ]; then +if [ ! -x $exec_mgmtsrvr ]; then echo "$exec_mgmtsrvr missing" exit 1 fi |