Below is the list of changes that have just been committed into a local
5.1 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2305 06/04/10 18:08:54 msvensson@neptunus.(none) +2 -0
Step 1 in removing mysql-test-run.sh from 5.1 and up
mysql-test/mysql-test-run.sh
1.312 06/04/10 18:08:50 msvensson@neptunus.(none) +12 -0
Add nag message to mysql-test-run.sh taht indicates it will soon be removed.
Makefile.am
1.85 06/04/10 18:08:50 msvensson@neptunus.(none) +11 -28
Change make test, make test-full, make test-force and make test-force-full to use mysql-test-run.pl
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: msvensson
# Host: neptunus.(none)
# Root: /home/msvensson/mysql/mysql-5.1
--- 1.84/Makefile.am 2006-03-30 11:02:48 +02:00
+++ 1.85/Makefile.am 2006-04-10 18:08:50 +02:00
@@ -120,52 +120,35 @@
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.%
--- 1.311/mysql-test/mysql-test-run.sh 2006-04-04 20:19:13 +02:00
+++ 1.312/mysql-test/mysql-test-run.sh 2006-04-10 18:08:50 +02:00
@@ -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
#--
| Thread |
|---|
| • bk commit into 5.1 tree (msvensson:1.2305) | msvensson | 10 Apr |