Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
fe0fc2d6
Commit
fe0fc2d6
authored
Nov 21, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge 192.168.0.4:mysql/mysql-4.1-maint
into neptunus.(none):/home/msvensson/mysql/mysql-4.1-maint
parents
a9eb1b70
9594462f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
client/mysqltest.c
client/mysqltest.c
+1
-3
mysql-test/lib/mtr_report.pl
mysql-test/lib/mtr_report.pl
+6
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+1
-1
No files found.
client/mysqltest.c
View file @
fe0fc2d6
...
...
@@ -6456,7 +6456,7 @@ int reg_replace(char** buf_p, int* buf_len_p, char *pattern,
{
my_regex_t
r
;
my_regmatch_t
*
subs
;
char
*
buf_end
,
*
replace_end
;
char
*
replace_end
;
char
*
buf
=
*
buf_p
;
int
len
;
int
buf_len
,
need_buf_len
;
...
...
@@ -6476,8 +6476,6 @@ int reg_replace(char** buf_p, int* buf_len_p, char *pattern,
SECURE_REG_BUF
buf_end
=
buf
+
buf_len
;
if
(
icase
)
cflags
|=
REG_ICASE
;
...
...
mysql-test/lib/mtr_report.pl
View file @
fe0fc2d6
...
...
@@ -34,7 +34,12 @@ sub mtr_verbose (@);
# We can't use diff -u or diff -a as these are not portable
sub
mtr_show_failed_diff
($)
{
my
$tname
=
shift
;
my
$result_file_name
=
shift
;
# The reject and log files have been dumped to
# to filenames based on the result_file's name
my
$tname
=
basename
(
$result_file_name
);
$tname
=~
s/\..*$//
;
my
$reject_file
=
"
r/
$tname
.reject
";
my
$result_file
=
"
r/
$tname
.result
";
...
...
mysql-test/mysql-test-run.pl
View file @
fe0fc2d6
...
...
@@ -3203,7 +3203,7 @@ sub report_failure_and_restart ($) {
my
$tinfo
=
shift
;
mtr_report_test_failed
(
$tinfo
);
mtr_show_failed_diff
(
$tinfo
->
{'
nam
e
'});
mtr_show_failed_diff
(
$tinfo
->
{'
result_fil
e
'});
print
"
\n
";
if
(
$opt_force
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment