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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
7858004c
Commit
7858004c
authored
May 15, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/Users/kent/mysql/bk/mysql-4.1
into mysql.com:/Users/kent/mysql/bk/mysql-5.0-compile
parents
e2d7efb2
81b36add
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
137 additions
and
101 deletions
+137
-101
mysql-test/lib/mtr_process.pl
mysql-test/lib/mtr_process.pl
+1
-1
mysql-test/lib/mtr_report.pl
mysql-test/lib/mtr_report.pl
+7
-6
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+129
-94
No files found.
mysql-test/lib/mtr_process.pl
View file @
7858004c
...
...
@@ -344,7 +344,7 @@ sub mtr_kill_leftovers () {
# We scan the "var/run/" directory for other process id's to kill
# FIXME $path_run_dir or something
my
$rundir
=
"
$::
glob_mysql_test_dir/va
r/run
";
my
$rundir
=
"
$::
opt_vardi
r/run
";
if
(
-
d
$rundir
)
{
...
...
mysql-test/lib/mtr_report.pl
View file @
7858004c
...
...
@@ -89,9 +89,10 @@ sub mtr_report_test_passed ($) {
my
$tinfo
=
shift
;
my
$timer
=
"";
if
(
$::opt_timer
and
-
f
"
$::
glob_mysql_test_dir/va
r/log/timer
"
)
if
(
$::opt_timer
and
-
f
"
$::
opt_vardi
r/log/timer
"
)
{
$timer
=
mtr_fromfile
("
$::glob_mysql_test_dir/var/log/timer
");
$timer
=
mtr_fromfile
("
$::opt_vardir/log/timer
");
$::glob_tot_real_time
+=
$timer
;
$timer
=
sprintf
"
%12s
",
$timer
;
}
$tinfo
->
{'
result
'}
=
'
MTR_RES_PASSED
';
...
...
@@ -177,8 +178,8 @@ sub mtr_report_stats ($) {
# Report if there was any fatal warnings/errors in the log files
#
unlink
("
$::
glob_mysql_test_dir/va
r/log/warnings
");
unlink
("
$::
glob_mysql_test_dir/va
r/log/warnings.tmp
");
unlink
("
$::
opt_vardi
r/log/warnings
");
unlink
("
$::
opt_vardi
r/log/warnings.tmp
");
# Remove some non fatal warnings from the log files
# FIXME what is going on ????? ;-)
...
...
@@ -196,11 +197,11 @@ sub mtr_report_stats ($) {
# found_error=1
# }
# done
# unlink("$::
glob_mysql_test_dir/va
r/log/warnings.tmp");
# unlink("$::
opt_vardi
r/log/warnings.tmp");
# if ( $found_error= "1" )
# {
# print "WARNING: Got errors/warnings while running tests. Please examine\n"
# print "$::
glob_mysql_test_dir/va
r/log/warnings for details.\n"
# print "$::
opt_vardi
r/log/warnings for details.\n"
# }
# }
}
...
...
mysql-test/mysql-test-run.pl
View file @
7858004c
This diff is collapsed.
Click to expand it.
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