Bug #58092 Test "rpl_cross_version" has "copy_file" failing

I am not fixing the test failure
Adds printing of my_errno when commands fail, could hopefully help
This commit is contained in:
Bjorn Munch 2010-12-01 11:11:16 +01:00
commit cc21483fcf
3 changed files with 6 additions and 5 deletions

View file

@ -1088,8 +1088,8 @@ void handle_command_error(struct st_command *command, uint error)
int i;
if (command->abort_on_error)
die("command \"%.*s\" failed with error %d",
command->first_word_len, command->query, error);
die("command \"%.*s\" failed with error %d. my_errno=%d",
command->first_word_len, command->query, error, my_errno);
i= match_expected_error(command, error, NULL);
@ -1100,8 +1100,8 @@ void handle_command_error(struct st_command *command, uint error)
DBUG_VOID_RETURN;
}
if (command->expected_errors.count > 0)
die("command \"%.*s\" failed with wrong error: %d",
command->first_word_len, command->query, error);
die("command \"%.*s\" failed with wrong error: %d. my_errno=%d",
command->first_word_len, command->query, error, my_errno);
}
else if (command->expected_errors.err[0].type == ERR_ERRNO &&
command->expected_errors.err[0].code.errnum != 0)