mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Step 1 in removing mysql-test-run.sh from 5.1 and up
This commit is contained in:
39
Makefile.am
39
Makefile.am
@ -119,54 +119,37 @@ tags:
|
|||||||
# making sure each user use different ports.
|
# making sure each user use different ports.
|
||||||
|
|
||||||
test:
|
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 ; \
|
cd mysql-test ; \
|
||||||
./mysql-test-run.pl --mysqld=--binlog-format=statement && \
|
./mysql-test-run.pl --mysqld=--binlog-format=statement && \
|
||||||
./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=row
|
./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=row
|
||||||
|
|
||||||
test-full-pl:
|
test-full:
|
||||||
cd mysql-test ; \
|
cd mysql-test ; \
|
||||||
./mysql-test-run.pl --mysqld=--binlog-format=statement && \
|
./mysql-test-run.pl --mysqld=--binlog-format=statement && \
|
||||||
./mysql-test-run.pl --ps-protocol --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 --mysqld=--binlog-format=row && \
|
||||||
./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=row
|
./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=row
|
||||||
|
|
||||||
test-force-pl:
|
test-force:
|
||||||
cd mysql-test ; \
|
cd mysql-test ; \
|
||||||
./mysql-test-run.pl --force --mysqld=--binlog-format=statement && \
|
./mysql-test-run.pl --force --mysqld=--binlog-format=statement && \
|
||||||
./mysql-test-run.pl --ps-protocol --force --mysqld=--binlog-format=row
|
./mysql-test-run.pl --ps-protocol --force --mysqld=--binlog-format=row
|
||||||
|
|
||||||
test-force-full-pl:
|
test-force-full:
|
||||||
cd mysql-test ; \
|
cd mysql-test ; \
|
||||||
./mysql-test-run.pl --force --mysqld=--binlog-format=statement && \
|
./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 --ps-protocol --mysqld=--binlog-format=statement && \
|
||||||
./mysql-test-run.pl --force --mysqld=--binlog-format=row && \
|
./mysql-test-run.pl --force --mysqld=--binlog-format=row && \
|
||||||
./mysql-test-run.pl --force --ps-protocol --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
|
# Don't update the files from bitkeeper
|
||||||
%::SCCS/s.%
|
%::SCCS/s.%
|
||||||
|
|
||||||
|
@ -7,6 +7,18 @@
|
|||||||
# List of failed cases (--force) backported from 4.1 by Joerg
|
# 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
|
# Access Definitions
|
||||||
#--
|
#--
|
||||||
|
Reference in New Issue
Block a user