diff options
author | unknown <bell@sanja.is.com.ua> | 2004-08-16 17:09:57 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-08-16 17:09:57 +0300 |
commit | f43fe31e571bb5e127d5e0ca4ad6680a15104aa7 (patch) | |
tree | 5f45a67d822ec1b84bfc5ee8d02fc61b005d5e8a /mysql-test/create-test-result | |
parent | fccd2414c67247afe4ee2568b684d34f894e9a2c (diff) | |
download | mariadb-git-f43fe31e571bb5e127d5e0ca4ad6680a15104aa7.tar.gz |
fixed problem spoted by Vladimir V. Kolpakov
Diffstat (limited to 'mysql-test/create-test-result')
-rwxr-xr-x | mysql-test/create-test-result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/create-test-result b/mysql-test/create-test-result index dc03f5394b9..ad19cdf08a1 100755 --- a/mysql-test/create-test-result +++ b/mysql-test/create-test-result @@ -6,7 +6,7 @@ # to start mysqld yourself and run mysqltest -r RESULT_DIR=r -if [ -z $EDITOR ] ; then +if [ -z "$EDITOR" ] ; then EDITOR=vi fi @@ -24,7 +24,7 @@ function usage() test_name=$1 -[ -z $test_name ] && usage +[ -z "$test_name" ] && usage result_file=$RESULT_DIR/$test_name.result reject_file=$RESULT_DIR/$test_name.reject |