mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +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
f4de95a886
2 changed files with 5 additions and 5 deletions
0
include/abi_check
Normal file
0
include/abi_check
Normal file
|
@ -185,7 +185,7 @@ our $opt_fast;
|
||||||
our $opt_force;
|
our $opt_force;
|
||||||
our $opt_reorder= 0;
|
our $opt_reorder= 0;
|
||||||
our $opt_enable_disabled;
|
our $opt_enable_disabled;
|
||||||
our $opt_mem;
|
our $opt_mem= $ENV{'MTR_MEM'};
|
||||||
|
|
||||||
our $opt_gcov;
|
our $opt_gcov;
|
||||||
our $opt_gcov_err;
|
our $opt_gcov_err;
|
||||||
|
@ -591,7 +591,7 @@ sub command_line_setup () {
|
||||||
'tmpdir=s' => \$opt_tmpdir,
|
'tmpdir=s' => \$opt_tmpdir,
|
||||||
'vardir=s' => \$opt_vardir,
|
'vardir=s' => \$opt_vardir,
|
||||||
'benchdir=s' => \$glob_mysql_bench_dir,
|
'benchdir=s' => \$glob_mysql_bench_dir,
|
||||||
'mem' => \$opt_mem,
|
'mem=s' => \$opt_mem,
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
'comment=s' => \$opt_comment,
|
'comment=s' => \$opt_comment,
|
||||||
|
@ -743,7 +743,7 @@ sub command_line_setup () {
|
||||||
|
|
||||||
# Use /dev/shm as the preferred location for vardir and
|
# Use /dev/shm as the preferred location for vardir and
|
||||||
# thus implicitly also tmpdir. Add other locations to list
|
# thus implicitly also tmpdir. Add other locations to list
|
||||||
my @tmpfs_locations= ("/dev/shm");
|
my @tmpfs_locations= ($opt_mem, "/dev/shm");
|
||||||
# One could maybe use "mount" to find tmpfs location(s)
|
# One could maybe use "mount" to find tmpfs location(s)
|
||||||
foreach my $fs (@tmpfs_locations)
|
foreach my $fs (@tmpfs_locations)
|
||||||
{
|
{
|
||||||
|
@ -2490,7 +2490,7 @@ sub run_suite () {
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
|
||||||
mtr_timer_start($glob_timers,"testcase", 60 * $opt_testcase_timeout);
|
mtr_timer_start($glob_timers,"testcase", $opt_testcase_timeout);
|
||||||
run_testcase($tinfo);
|
run_testcase($tinfo);
|
||||||
mtr_timer_stop($glob_timers,"testcase");
|
mtr_timer_stop($glob_timers,"testcase");
|
||||||
}
|
}
|
||||||
|
@ -4645,7 +4645,7 @@ Options to control directories to use
|
||||||
tmpfs will speed up tests.
|
tmpfs will speed up tests.
|
||||||
mem=DIR Run testsuite in "memory" using tmpfs if
|
mem=DIR Run testsuite in "memory" using tmpfs if
|
||||||
available(default: /dev/shm)
|
available(default: /dev/shm)
|
||||||
|
reads from MTR_MEM environment variable
|
||||||
|
|
||||||
Options to control what test suites or cases to run
|
Options to control what test suites or cases to run
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue