mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1-maint
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
This commit is contained in:
commit
a45e6ba7e8
2 changed files with 3 additions and 2 deletions
|
@ -1735,7 +1735,7 @@ sub environment_setup () {
|
||||||
# Setup env so childs can execute mysql_client_test
|
# Setup env so childs can execute mysql_client_test
|
||||||
# ----------------------------------------------------
|
# ----------------------------------------------------
|
||||||
my $cmdline_mysql_client_test=
|
my $cmdline_mysql_client_test=
|
||||||
"$exe_mysql_client_test --no-defaults --testcase --user=root --silent " .
|
"$exe_mysql_client_test --no-defaults --testcase --user=root " .
|
||||||
"--port=$master->[0]->{'port'} " .
|
"--port=$master->[0]->{'port'} " .
|
||||||
"--socket=$master->[0]->{'path_sock'}";
|
"--socket=$master->[0]->{'path_sock'}";
|
||||||
if ( $mysql_version_id >= 50000 )
|
if ( $mysql_version_id >= 50000 )
|
||||||
|
|
|
@ -121,8 +121,9 @@ static void client_disconnect();
|
||||||
|
|
||||||
void die(const char *file, int line, const char *expr)
|
void die(const char *file, int line, const char *expr)
|
||||||
{
|
{
|
||||||
|
fflush(stdout);
|
||||||
fprintf(stderr, "%s:%d: check failed: '%s'\n", file, line, expr);
|
fprintf(stderr, "%s:%d: check failed: '%s'\n", file, line, expr);
|
||||||
fflush(NULL);
|
fflush(stderr);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue