Below is the list of changes that have just been committed into a local
5.0 repository of cps. When cps 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.2030 05/10/16 19:30:10 petr@stripped +1 -0
portability fix: sh does not support "==". This resulted in IM tests failing on range of platforms.
mysql-test/t/kill_n_check.sh
1.2 05/10/16 19:28:54 petr@stripped +2 -2
portability fix: sh does not support "==". This resulted in IM tests failing on range of platforms.
# 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: petr
# Host: owlet.
# Root: /home/cps/mysql/trees/mysql-5.0
--- 1.1/mysql-test/t/kill_n_check.sh 2005-10-01 01:14:40 +04:00
+++ 1.2/mysql-test/t/kill_n_check.sh 2005-10-16 19:28:54 +04:00
@@ -39,7 +39,7 @@
# echo "New PID: $new_pid"
-if [ "$expected_result" == "restarted" ]; then
+if [ "$expected_result" = "restarted" ]; then
if [ -z "$new_pid" ]; then
echo "Error: the process was killed."
@@ -54,7 +54,7 @@
echo "Success: the process was restarted."
exit 0
-else # $expected_result == killed
+else # $expected_result = killed
if [ "$new_pid" -a "$new_pid" -ne "$original_pid" ]; then
echo "Error: the process was restarted."
| Thread |
|---|
| • bk commit into 5.0 tree (petr:1.2030) | Petr Chardin | 16 Oct |