mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Step 1 in removing mysql-test-run.sh from 5.1 and up
Makefile.am: Change make test, make test-full, make test-force and make test-force-full to use mysql-test-run.pl mysql-test/mysql-test-run.sh: Add nag message to mysql-test-run.sh taht indicates it will soon be removed.
This commit is contained in:
parent
f7af64abda
commit
9f64974891
2 changed files with 23 additions and 28 deletions
39
Makefile.am
39
Makefile.am
|
@ -119,54 +119,37 @@ tags:
|
|||
# making sure each user use different ports.
|
||||
|
||||
test:
|
||||
cd mysql-test ; \
|
||||
./mysql-test-run --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run --ps-protocol --mysqld=--binlog-format=row
|
||||
|
||||
test-full:
|
||||
cd mysql-test ; \
|
||||
./mysql-test-run --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run --ps-protocol --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run --mysqld=--binlog-format=row && \
|
||||
./mysql-test-run --ps-protocol --mysqld=--binlog-format=row
|
||||
|
||||
test-force:
|
||||
cd mysql-test ; \
|
||||
./mysql-test-run --force --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run --ps-protocol --force --mysqld=--binlog-format=row
|
||||
|
||||
test-force-full:
|
||||
cd mysql-test ; \
|
||||
./mysql-test-run --force --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run --force --ps-protocol --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run --force --mysqld=--binlog-format=row && \
|
||||
./mysql-test-run --force --ps-protocol --mysqld=--binlog-format=row
|
||||
|
||||
# We are testing a new Perl version of the test script
|
||||
test-pl:
|
||||
cd mysql-test ; \
|
||||
./mysql-test-run.pl --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=row
|
||||
|
||||
test-full-pl:
|
||||
test-full:
|
||||
cd mysql-test ; \
|
||||
./mysql-test-run.pl --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run.pl --mysqld=--binlog-format=row && \
|
||||
./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=row
|
||||
|
||||
test-force-pl:
|
||||
test-force:
|
||||
cd mysql-test ; \
|
||||
./mysql-test-run.pl --force --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run.pl --ps-protocol --force --mysqld=--binlog-format=row
|
||||
|
||||
test-force-full-pl:
|
||||
test-force-full:
|
||||
cd mysql-test ; \
|
||||
./mysql-test-run.pl --force --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run.pl --force --ps-protocol --mysqld=--binlog-format=statement && \
|
||||
./mysql-test-run.pl --force --mysqld=--binlog-format=row && \
|
||||
./mysql-test-run.pl --force --ps-protocol --mysqld=--binlog-format=row
|
||||
|
||||
# Keep these for a while
|
||||
test-pl: test
|
||||
test-full-pl: test-full
|
||||
test-force-pl: test-force
|
||||
test-force-full-pl: test-force-full
|
||||
|
||||
|
||||
|
||||
# Don't update the files from bitkeeper
|
||||
%::SCCS/s.%
|
||||
|
||||
|
|
|
@ -7,6 +7,18 @@
|
|||
# List of failed cases (--force) backported from 4.1 by Joerg
|
||||
# :-)
|
||||
|
||||
|
||||
echo "##################################################";
|
||||
echo "This script is deprecated and will soon be removed";
|
||||
echo "Use mysql-test-run.pl instead";
|
||||
echo "Now sleeping 20 seconds...";
|
||||
echo "##################################################";
|
||||
sleep 20;
|
||||
echo "continuing";
|
||||
echo;
|
||||
|
||||
|
||||
|
||||
#++
|
||||
# Access Definitions
|
||||
#--
|
||||
|
|
Loading…
Reference in a new issue