Commit 98f456ab authored by unknown's avatar unknown

Applied a couple of Netware related patches.


netware/mysql_test_run.c:
  - Added missing cast to resolve compilation issues.
  
  - run_test() in mysql_test_run.c needs to check the correct
    error value returned by abort_not_supported_test(). This
    resolves the problem with skipped test cases on NetWare,
    which are supposed to be marked 'skip' instead of 'bad'.
netware/mysqladmin.def:
  Increased stack size to avoid stack overflow in mysqladmin.NLM
parent e24fbb63
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include "my_manage.h" #include "my_manage.h"
#ifdef __NETWARE__ #ifdef __NETWARE__
#define strindex(a,b) ((char*)strindex(a,b)) #define strindex(a,b) ((char*)strindex(a,b))
#define strstr(a,b) ((char*)strstr(a,b))
#endif #endif
/****************************************************************************** /******************************************************************************
...@@ -943,7 +944,7 @@ void run_test(char *test) ...@@ -943,7 +944,7 @@ void run_test(char *test)
// increment total // increment total
++total_test; ++total_test;
} }
else if (err == 2) else if (err == 62)
{ {
// skip // skip
rstr = TEST_SKIP; rstr = TEST_SKIP;
......
...@@ -6,6 +6,7 @@ SCREENNAME "MySQL Admin[scrollable]" ...@@ -6,6 +6,7 @@ SCREENNAME "MySQL Admin[scrollable]"
COPYRIGHT "(c) 2003-2005 Novell, Inc. Portions (c) 2003 MySQL AB. All Rights Reserved." COPYRIGHT "(c) 2003-2005 Novell, Inc. Portions (c) 2003 MySQL AB. All Rights Reserved."
DESCRIPTION "MySQL Admin Tool" DESCRIPTION "MySQL Admin Tool"
VERSION 4, 0 VERSION 4, 0
STACKSIZE 32767
XDCDATA ../netware/mysql.xdc XDCDATA ../netware/mysql.xdc
#DEBUG #DEBUG
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment