1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

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
This commit is contained in:
unknown
2005-08-28 11:38:18 +03:00
parent 9f5ef4a159
commit e239939ebf
2 changed files with 3 additions and 1 deletions

View File

@@ -27,6 +27,7 @@
#include "my_manage.h"
#ifdef __NETWARE__
#define strindex(a,b) ((char*)strindex(a,b))
#define strstr(a,b) ((char*)strstr(a,b))
#endif
/******************************************************************************
@@ -943,7 +944,7 @@ void run_test(char *test)
// increment total
++total_test;
}
else if (err == 2)
else if (err == 62)
{
// skip
rstr = TEST_SKIP;