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
0ec64326
Commit
0ec64326
authored
Nov 08, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0-maint
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
parents
c6b02840
a620a3ab
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
21 deletions
+33
-21
client/mysqltest.c
client/mysqltest.c
+15
-5
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+18
-16
No files found.
client/mysqltest.c
View file @
0ec64326
...
@@ -80,13 +80,13 @@ enum {
...
@@ -80,13 +80,13 @@ enum {
OPT_SSL_CA
,
OPT_SSL_CAPATH
,
OPT_SSL_CIPHER
,
OPT_PS_PROTOCOL
,
OPT_SSL_CA
,
OPT_SSL_CAPATH
,
OPT_SSL_CIPHER
,
OPT_PS_PROTOCOL
,
OPT_SP_PROTOCOL
,
OPT_CURSOR_PROTOCOL
,
OPT_VIEW_PROTOCOL
,
OPT_SP_PROTOCOL
,
OPT_CURSOR_PROTOCOL
,
OPT_VIEW_PROTOCOL
,
OPT_SSL_VERIFY_SERVER_CERT
,
OPT_MAX_CONNECT_RETRIES
,
OPT_SSL_VERIFY_SERVER_CERT
,
OPT_MAX_CONNECT_RETRIES
,
OPT_MARK_PROGRESS
OPT_MARK_PROGRESS
,
OPT_CHARSETS_DIR
};
};
static
int
record
=
0
,
opt_sleep
=
-
1
;
static
int
record
=
0
,
opt_sleep
=
-
1
;
static
char
*
db
=
0
,
*
pass
=
0
;
static
char
*
db
=
0
,
*
pass
=
0
;
const
char
*
user
=
0
,
*
host
=
0
,
*
unix_sock
=
0
,
*
opt_basedir
=
"./"
;
const
char
*
user
=
0
,
*
host
=
0
,
*
unix_sock
=
0
,
*
opt_basedir
=
"./"
;
const
char
*
opt_include
=
0
;
const
char
*
opt_include
=
0
,
*
opt_charsets_dir
;
static
int
port
=
0
;
static
int
port
=
0
;
static
int
opt_max_connect_retries
;
static
int
opt_max_connect_retries
;
static
my_bool
opt_compress
=
0
,
silent
=
0
,
verbose
=
0
;
static
my_bool
opt_compress
=
0
,
silent
=
0
,
verbose
=
0
;
...
@@ -145,7 +145,6 @@ static struct st_test_file* file_stack_end;
...
@@ -145,7 +145,6 @@ static struct st_test_file* file_stack_end;
static
CHARSET_INFO
*
charset_info
=
&
my_charset_latin1
;
/* Default charset */
static
CHARSET_INFO
*
charset_info
=
&
my_charset_latin1
;
/* Default charset */
static
const
char
*
charset_name
=
"latin1"
;
/* Default character set name */
static
const
char
*
embedded_server_groups
[]
=
static
const
char
*
embedded_server_groups
[]
=
{
{
...
@@ -3093,7 +3092,11 @@ void do_connect(struct st_command *command)
...
@@ -3093,7 +3092,11 @@ void do_connect(struct st_command *command)
if
(
opt_compress
||
con_compress
)
if
(
opt_compress
||
con_compress
)
mysql_options
(
&
next_con
->
mysql
,
MYSQL_OPT_COMPRESS
,
NullS
);
mysql_options
(
&
next_con
->
mysql
,
MYSQL_OPT_COMPRESS
,
NullS
);
mysql_options
(
&
next_con
->
mysql
,
MYSQL_OPT_LOCAL_INFILE
,
0
);
mysql_options
(
&
next_con
->
mysql
,
MYSQL_OPT_LOCAL_INFILE
,
0
);
mysql_options
(
&
next_con
->
mysql
,
MYSQL_SET_CHARSET_NAME
,
charset_name
);
mysql_options
(
&
next_con
->
mysql
,
MYSQL_SET_CHARSET_NAME
,
charset_info
->
csname
);
if
(
opt_charsets_dir
)
mysql_options
(
&
cur_con
->
mysql
,
MYSQL_SET_CHARSET_DIR
,
opt_charsets_dir
);
#ifdef HAVE_OPENSSL
#ifdef HAVE_OPENSSL
if
(
opt_use_ssl
||
con_ssl
)
if
(
opt_use_ssl
||
con_ssl
)
...
@@ -3779,6 +3782,9 @@ static struct my_option my_long_options[] =
...
@@ -3779,6 +3782,9 @@ static struct my_option my_long_options[] =
0
,
0
,
0
,
0
,
0
,
0
},
0
,
0
,
0
,
0
,
0
,
0
},
{
"basedir"
,
'b'
,
"Basedir for tests."
,
(
gptr
*
)
&
opt_basedir
,
{
"basedir"
,
'b'
,
"Basedir for tests."
,
(
gptr
*
)
&
opt_basedir
,
(
gptr
*
)
&
opt_basedir
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
(
gptr
*
)
&
opt_basedir
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"character-sets-dir"
,
OPT_CHARSETS_DIR
,
"Directory where character sets are."
,
(
gptr
*
)
&
opt_charsets_dir
,
(
gptr
*
)
&
opt_charsets_dir
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"compress"
,
'C'
,
"Use the compressed server/client protocol."
,
{
"compress"
,
'C'
,
"Use the compressed server/client protocol."
,
(
gptr
*
)
&
opt_compress
,
(
gptr
*
)
&
opt_compress
,
0
,
GET_BOOL
,
NO_ARG
,
0
,
0
,
0
,
(
gptr
*
)
&
opt_compress
,
(
gptr
*
)
&
opt_compress
,
0
,
GET_BOOL
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
0
,
0
,
0
},
...
@@ -5511,7 +5517,11 @@ int main(int argc, char **argv)
...
@@ -5511,7 +5517,11 @@ int main(int argc, char **argv)
if
(
opt_compress
)
if
(
opt_compress
)
mysql_options
(
&
cur_con
->
mysql
,
MYSQL_OPT_COMPRESS
,
NullS
);
mysql_options
(
&
cur_con
->
mysql
,
MYSQL_OPT_COMPRESS
,
NullS
);
mysql_options
(
&
cur_con
->
mysql
,
MYSQL_OPT_LOCAL_INFILE
,
0
);
mysql_options
(
&
cur_con
->
mysql
,
MYSQL_OPT_LOCAL_INFILE
,
0
);
mysql_options
(
&
cur_con
->
mysql
,
MYSQL_SET_CHARSET_NAME
,
charset_name
);
mysql_options
(
&
cur_con
->
mysql
,
MYSQL_SET_CHARSET_NAME
,
charset_info
->
csname
);
if
(
opt_charsets_dir
)
mysql_options
(
&
cur_con
->
mysql
,
MYSQL_SET_CHARSET_DIR
,
opt_charsets_dir
);
#ifdef HAVE_OPENSSL
#ifdef HAVE_OPENSSL
...
...
mysql-test/mysql-test-run.pl
View file @
0ec64326
...
@@ -591,7 +591,7 @@ sub command_line_setup () {
...
@@ -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
,
...
@@ -734,17 +734,18 @@ sub command_line_setup () {
...
@@ -734,17 +734,18 @@ sub command_line_setup () {
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
# Check if we should speed up tests by trying to run on tmpfs
# Check if we should speed up tests by trying to run on tmpfs
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
if
(
$opt_mem
)
if
(
defined
$opt_mem
)
{
{
mtr_error
("
Can't use --mem and --vardir at the same time
")
mtr_error
("
Can't use --mem and --vardir at the same time
")
if
$opt_vardir
;
if
$opt_vardir
;
mtr_error
("
Can't use --mem and --tmpdir at the same time
")
mtr_error
("
Can't use --mem and --tmpdir at the same time
")
if
$opt_tmpdir
;
if
$opt_tmpdir
;
# Use /dev/shm as the preferred location for vardir and
# Search through list of locations that are known
# thus implicitly also tmpdir. Add other locations to list
# to be "fast disks" to list to find a suitable location
my
@tmpfs_locations
=
(
$opt_mem
,
"
/dev/shm
");
# Use --mem=<dir> as first location to look.
# One could maybe use "mount" to find tmpfs location(s)
my
@tmpfs_locations
=
(
$opt_mem
,
"
/dev/shm
",
"
/tmp
");
foreach
my
$fs
(
@tmpfs_locations
)
foreach
my
$fs
(
@tmpfs_locations
)
{
{
if
(
-
d
$fs
)
if
(
-
d
$fs
)
...
@@ -2988,9 +2989,9 @@ sub analyze_testcase_failure_sync_with_master($)
...
@@ -2988,9 +2989,9 @@ sub analyze_testcase_failure_sync_with_master($)
mtr_add_arg
(
$args
,
"
--no-defaults
");
mtr_add_arg
(
$args
,
"
--no-defaults
");
mtr_add_arg
(
$args
,
"
--silent
");
mtr_add_arg
(
$args
,
"
--silent
");
mtr_add_arg
(
$args
,
"
-v
");
mtr_add_arg
(
$args
,
"
--skip-safemalloc
");
mtr_add_arg
(
$args
,
"
--skip-safemalloc
");
mtr_add_arg
(
$args
,
"
--tmpdir=%s
",
$opt_tmpdir
);
mtr_add_arg
(
$args
,
"
--tmpdir=%s
",
$opt_tmpdir
);
mtr_add_arg
(
$args
,
"
--character-sets-dir=%s
",
$path_charsetsdir
);
mtr_add_arg
(
$args
,
"
--socket=%s
",
$master
->
[
0
]
->
{'
path_sock
'});
mtr_add_arg
(
$args
,
"
--socket=%s
",
$master
->
[
0
]
->
{'
path_sock
'});
mtr_add_arg
(
$args
,
"
--port=%d
",
$master
->
[
0
]
->
{'
port
'});
mtr_add_arg
(
$args
,
"
--port=%d
",
$master
->
[
0
]
->
{'
port
'});
...
@@ -4174,9 +4175,9 @@ sub run_check_testcase ($$) {
...
@@ -4174,9 +4175,9 @@ sub run_check_testcase ($$) {
mtr_add_arg
(
$args
,
"
--no-defaults
");
mtr_add_arg
(
$args
,
"
--no-defaults
");
mtr_add_arg
(
$args
,
"
--silent
");
mtr_add_arg
(
$args
,
"
--silent
");
mtr_add_arg
(
$args
,
"
-v
");
mtr_add_arg
(
$args
,
"
--skip-safemalloc
");
mtr_add_arg
(
$args
,
"
--skip-safemalloc
");
mtr_add_arg
(
$args
,
"
--tmpdir=%s
",
$opt_tmpdir
);
mtr_add_arg
(
$args
,
"
--tmpdir=%s
",
$opt_tmpdir
);
mtr_add_arg
(
$args
,
"
--character-sets-dir=%s
",
$path_charsetsdir
);
mtr_add_arg
(
$args
,
"
--socket=%s
",
$mysqld
->
{'
path_sock
'});
mtr_add_arg
(
$args
,
"
--socket=%s
",
$mysqld
->
{'
path_sock
'});
mtr_add_arg
(
$args
,
"
--port=%d
",
$mysqld
->
{'
port
'});
mtr_add_arg
(
$args
,
"
--port=%d
",
$mysqld
->
{'
port
'});
...
@@ -4220,9 +4221,9 @@ sub run_mysqltest ($) {
...
@@ -4220,9 +4221,9 @@ sub run_mysqltest ($) {
mtr_add_arg
(
$args
,
"
--no-defaults
");
mtr_add_arg
(
$args
,
"
--no-defaults
");
mtr_add_arg
(
$args
,
"
--silent
");
mtr_add_arg
(
$args
,
"
--silent
");
mtr_add_arg
(
$args
,
"
-v
");
mtr_add_arg
(
$args
,
"
--skip-safemalloc
");
mtr_add_arg
(
$args
,
"
--skip-safemalloc
");
mtr_add_arg
(
$args
,
"
--tmpdir=%s
",
$opt_tmpdir
);
mtr_add_arg
(
$args
,
"
--tmpdir=%s
",
$opt_tmpdir
);
mtr_add_arg
(
$args
,
"
--character-sets-dir=%s
",
$path_charsetsdir
);
if
(
$tinfo
->
{'
component_id
'}
eq
'
im
')
if
(
$tinfo
->
{'
component_id
'}
eq
'
im
')
{
{
...
@@ -4307,13 +4308,11 @@ sub run_mysqltest ($) {
...
@@ -4307,13 +4308,11 @@ sub run_mysqltest ($) {
if
(
$opt_ssl
)
if
(
$opt_ssl
)
{
{
# Turn on SSL for _all_ test cases if option --ssl was used
# Turn on SSL for _all_ test cases if option --ssl was used
mtr_add_arg
(
$args
,
"
--ssl
",
mtr_add_arg
(
$args
,
"
--ssl
");
$glob_mysql_test_dir
);
}
}
elsif
(
$opt_ssl_supported
)
elsif
(
$opt_ssl_supported
)
{
{
mtr_add_arg
(
$args
,
"
--skip-ssl
",
mtr_add_arg
(
$args
,
"
--skip-ssl
");
$glob_mysql_test_dir
);
}
}
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
...
@@ -4648,9 +4647,12 @@ Options to control directories to use
...
@@ -4648,9 +4647,12 @@ Options to control directories to use
vardir=DIR The directory where files generated from the test run
vardir=DIR The directory where files generated from the test run
is stored (default: ./var). Specifying a ramdisk or
is stored (default: ./var). Specifying a ramdisk or
tmpfs will speed up tests.
tmpfs will speed up tests.
mem Run testsuite in "memory" using tmpfs if
mem[=DIR] Run testsuite in "memory" using tmpfs or ramdisk
available(default: /dev/shm)
Attempts to use DIR first if specified else
reads path from MTR_MEM environment variable
uses as builtin list of standard locations
for tmpfs (/dev/shm)
The option can also be set using environment
variable MTR_MEM=[DIR]
Options to control what test suites or cases to run
Options to control what test suites or cases to run
...
...
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