diff options
Diffstat (limited to 'repl-tests')
-rw-r--r-- | repl-tests/README | 2 | ||||
-rwxr-xr-x | repl-tests/run-all-tests | 2 | ||||
-rw-r--r-- | repl-tests/test-repl-ts/run.test | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/repl-tests/README b/repl-tests/README index 62a05e909e9..95611c6538d 100644 --- a/repl-tests/README +++ b/repl-tests/README @@ -9,4 +9,4 @@ sh run-all-tests If you would like to add your own test case, create a directory test-your-test-case-name, write your own run.test following the examples in the other test cases. Note that you can create the files containing -the expected output ( master files) by running mysql-test --record < run.test
\ No newline at end of file +the expected output ( master files) by running mysqltest --record < run.test
\ No newline at end of file diff --git a/repl-tests/run-all-tests b/repl-tests/run-all-tests index bed0ce3f0f0..d9f08d8a8fb 100755 --- a/repl-tests/run-all-tests +++ b/repl-tests/run-all-tests @@ -4,6 +4,6 @@ for d in test-*; do cd $d echo -n $d | sed -e s/test-// echo -n "...." -../../client/mysql-test $@ < run.test +../../client/mysqltest $@ < run.test cd .. done
\ No newline at end of file diff --git a/repl-tests/test-repl-ts/run.test b/repl-tests/test-repl-ts/run.test index 8e5abbd4a3e..0a5224ce02a 100644 --- a/repl-tests/test-repl-ts/run.test +++ b/repl-tests/test-repl-ts/run.test @@ -1,4 +1,4 @@ -#! ../client/mysql-test +#! ../client/mysqltest # tests if the replicaion preserves timestamp properly source ../include/master-slave.inc; |