1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

client_test.test:

Run client_test as a testcase
  new file
mysql-test-run.sh:
  More clearly report failure if --force, also exit 1
client_test.c:
  Use MAXPATHLEN in test_frm_bug()
  Renable test cases disabled for running from mysql-test-run
mysqltest.c:
  Don't check errno from popen, may not be set


client/mysqltest.c:
  Don't check errno from popen, may not be set
tests/client_test.c:
  Use MAXPATHLEN in test_frm_bug()
  Renable test cases disabled for running from mysql-test-run
mysql-test/mysql-test-run.sh:
  More clearly report failure if --force, also exit 1
mysql-test/t/client_test.test:
  Run client_test as a testcase
This commit is contained in:
unknown
2004-09-28 16:27:50 +02:00
parent 6337cd1c87
commit 656bcff63e
4 changed files with 19 additions and 12 deletions

View File

@ -847,7 +847,7 @@ int do_source(struct st_query* q)
static void do_exec(struct st_query* q)
{
int error;
DYNAMIC_STRING *ds = NULL; /* Assign just to avoid warning */
DYNAMIC_STRING *ds= NULL; /* Assign just to avoid warning */
DYNAMIC_STRING ds_tmp;
char buf[1024];
FILE *res_file;
@ -889,7 +889,7 @@ static void do_exec(struct st_query* q)
error= pclose(res_file);
if (error != 0)
die("command \"%s\" failed: %s", cmd, errno);
die("command \"%s\" failed", cmd);
if (!disable_result_log)
{