List:Internals« Previous MessageNext Message »
From:kvishwanatha Date:August 18 2005 6:57am
Subject:bk commit into 4.1 tree (bldsql:1.2368)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of bldsql. When bldsql 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.2368 05/08/18 12:27:28 bldsql@stripped +1 -0
  NetWare specific changes:
  run_test() of mysql_test_run.c is made to check the correct err returned by abort_not_supported_test()
  of client/mysqltest.c.
  Resolves the problem of skipped test cases on NetWare which are supposed to be marked 
  'skip' instead of 'bad'. 

  netware/mysql_test_run.c
    1.12 05/08/18 12:27:21 bldsql@stripped +6 -1
    NetWare specific changes:
    run_test() of mysql_test_run.c is made to check the correct err returned by abort_not_supported_test()
    of client/mysqltest.c.
    Resolves the problem of skipped test cases on NetWare which are supposed to be marked 
    'skip' instead of 'bad'. 

# 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:	bldsql
# Host:	blr-naas-nwl03.blr.novell.com
# Root:	/home/bldsql/bk/mysql-4.1-web

--- 1.11/netware/mysql_test_run.c	2005-02-08 23:19:29 +05:30
+++ 1.12/netware/mysql_test_run.c	2005-08-18 12:27:21 +05:30
@@ -25,6 +25,11 @@
 #include <sys/stat.h>
 #include <sys/mode.h>
 #include "my_manage.h"
+
+#ifdef __NETWARE__
+#define strindex(a,b) ((char*)strindex(a,b))
+#endif
+
 /******************************************************************************
 
   macros
@@ -937,7 +942,7 @@
       // increment total
       ++total_test;
     }
-    else if (err == 2)
+    else if (err == 62)  // To reflect the changes made in client/mysqltest.c 
     {
       // skip
       rstr = TEST_SKIP;
Thread
bk commit into 4.1 tree (bldsql:1.2368)kvishwanatha18 Aug