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
a581ed72
Commit
a581ed72
authored
Mar 06, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
parents
13407f2e
d82eebcb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
53 additions
and
15 deletions
+53
-15
client/mysqltest.c
client/mysqltest.c
+38
-12
mysql-test/lib/mtr_misc.pl
mysql-test/lib/mtr_misc.pl
+10
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+3
-0
mysql-test/t/mysqldump.test
mysql-test/t/mysqldump.test
+2
-2
No files found.
client/mysqltest.c
View file @
a581ed72
...
@@ -1120,8 +1120,6 @@ static void do_exec(struct st_query *query)
...
@@ -1120,8 +1120,6 @@ static void do_exec(struct st_query *query)
(
"error: %d, status: %d"
,
error
,
status
));
(
"error: %d, status: %d"
,
error
,
status
));
for
(
i
=
0
;
i
<
query
->
expected_errors
;
i
++
)
for
(
i
=
0
;
i
<
query
->
expected_errors
;
i
++
)
{
{
DBUG_PRINT
(
"info"
,
(
"error: %d, status: %d"
,
error
,
status
));
DBUG_PRINT
(
"info"
,
(
"expected error: %d"
,
DBUG_PRINT
(
"info"
,
(
"expected error: %d"
,
query
->
expected_errno
[
i
].
code
.
errnum
));
query
->
expected_errno
[
i
].
code
.
errnum
));
if
((
query
->
expected_errno
[
i
].
type
==
ERR_ERRNO
)
&&
if
((
query
->
expected_errno
[
i
].
type
==
ERR_ERRNO
)
&&
...
@@ -1353,6 +1351,35 @@ int do_modify_var(struct st_query *query, const char *name,
...
@@ -1353,6 +1351,35 @@ int do_modify_var(struct st_query *query, const char *name,
}
}
/*
Wrapper for 'system' function
NOTE
If mysqltest is executed from cygwin shell, the command will be
executed in the "windows command interpreter" cmd.exe and we prepend "sh"
to make it be executed by cygwins "bash". Thus commands like "rm",
"mkdir" as well as shellscripts can executed by "system" in Windows.
*/
int
my_system
(
DYNAMIC_STRING
*
ds_cmd
)
{
#ifdef __WIN__
/* Dump the command into a sh script file and execute with "sh" */
int
err
;
char
tmp_sh_name
[
64
],
tmp_sh_cmd
[
70
];
my_snprintf
(
tmp_sh_name
,
sizeof
(
tmp_sh_name
),
"tmp_%d.sh"
,
getpid
());
my_snprintf
(
tmp_sh_cmd
,
sizeof
(
tmp_sh_cmd
),
"sh %s"
,
tmp_sh_name
);
str_to_file
(
tmp_sh_name
,
ds_cmd
->
str
,
ds_cmd
->
length
);
err
=
system
(
tmp_sh_cmd
);
my_delete
(
tmp_sh_name
,
MYF
(
0
));
return
err
;
#else
return
system
(
ds_cmd
->
str
);
#endif
}
/*
/*
SYNOPSIS
SYNOPSIS
...
@@ -1365,14 +1392,12 @@ int do_modify_var(struct st_query *query, const char *name,
...
@@ -1365,14 +1392,12 @@ int do_modify_var(struct st_query *query, const char *name,
Eval the query to expand any $variables in the command.
Eval the query to expand any $variables in the command.
Execute the command with the "system" command.
Execute the command with the "system" command.
NOTE
*/
If mysqltest is executed from cygwin shell, the command will be
executed in cygwin shell. Thus commands like "rm" etc can be used.
*/
int
do_system
(
struct
st_query
*
command
)
void
do_system
(
struct
st_query
*
command
)
{
{
DYNAMIC_STRING
ds_cmd
;
DYNAMIC_STRING
ds_cmd
;
DBUG_ENTER
(
"do_system"
);
if
(
strlen
(
command
->
first_argument
)
==
0
)
if
(
strlen
(
command
->
first_argument
)
==
0
)
die
(
"Missing arguments to system, nothing to do!"
);
die
(
"Missing arguments to system, nothing to do!"
);
...
@@ -1384,7 +1409,7 @@ int do_system(struct st_query *command)
...
@@ -1384,7 +1409,7 @@ int do_system(struct st_query *command)
DBUG_PRINT
(
"info"
,
(
"running system command '%s' as '%s'"
,
DBUG_PRINT
(
"info"
,
(
"running system command '%s' as '%s'"
,
command
->
first_argument
,
ds_cmd
.
str
));
command
->
first_argument
,
ds_cmd
.
str
));
if
(
system
(
ds_cmd
.
str
))
if
(
my_system
(
&
ds_cmd
))
{
{
if
(
command
->
abort_on_error
)
if
(
command
->
abort_on_error
)
die
(
"system command '%s' failed"
,
command
->
first_argument
);
die
(
"system command '%s' failed"
,
command
->
first_argument
);
...
@@ -1396,7 +1421,7 @@ int do_system(struct st_query *command)
...
@@ -1396,7 +1421,7 @@ int do_system(struct st_query *command)
}
}
command
->
last_argument
=
command
->
end
;
command
->
last_argument
=
command
->
end
;
return
0
;
DBUG_VOID_RETURN
;
}
}
...
@@ -1647,6 +1672,7 @@ int do_sleep(struct st_query *query, my_bool real_sleep)
...
@@ -1647,6 +1672,7 @@ int do_sleep(struct st_query *query, my_bool real_sleep)
char
*
p
=
query
->
first_argument
;
char
*
p
=
query
->
first_argument
;
char
*
sleep_start
,
*
sleep_end
=
query
->
end
;
char
*
sleep_start
,
*
sleep_end
=
query
->
end
;
double
sleep_val
;
double
sleep_val
;
const
char
*
cmd
=
(
real_sleep
?
"real_sleep"
:
"sleep"
);
while
(
my_isspace
(
charset_info
,
*
p
))
while
(
my_isspace
(
charset_info
,
*
p
))
p
++
;
p
++
;
...
@@ -2405,7 +2431,7 @@ int do_done(struct st_query *q)
...
@@ -2405,7 +2431,7 @@ int do_done(struct st_query *q)
*/
*/
int
do_block
(
enum
block_cmd
cmd
,
struct
st_query
*
q
)
void
do_block
(
enum
block_cmd
cmd
,
struct
st_query
*
q
)
{
{
char
*
p
=
q
->
first_argument
;
char
*
p
=
q
->
first_argument
;
const
char
*
expr_start
,
*
expr_end
;
const
char
*
expr_start
,
*
expr_end
;
...
@@ -2429,7 +2455,7 @@ int do_block(enum block_cmd cmd, struct st_query* q)
...
@@ -2429,7 +2455,7 @@ int do_block(enum block_cmd cmd, struct st_query* q)
cur_block
++
;
cur_block
++
;
cur_block
->
cmd
=
cmd
;
cur_block
->
cmd
=
cmd
;
cur_block
->
ok
=
FALSE
;
cur_block
->
ok
=
FALSE
;
return
0
;
DBUG_VOID_RETURN
;
}
}
/* Parse and evaluate test expression */
/* Parse and evaluate test expression */
...
@@ -3135,7 +3161,7 @@ static void init_win_path_patterns()
...
@@ -3135,7 +3161,7 @@ static void init_win_path_patterns()
static
void
free_win_path_patterns
()
static
void
free_win_path_patterns
()
{
{
int
i
=
0
;
u
int
i
=
0
;
for
(
i
=
0
;
i
<
patterns
.
elements
;
i
++
)
for
(
i
=
0
;
i
<
patterns
.
elements
;
i
++
)
{
{
const
char
**
pattern
=
dynamic_element
(
&
patterns
,
i
,
const
char
**
);
const
char
**
pattern
=
dynamic_element
(
&
patterns
,
i
,
const
char
**
);
...
...
mysql-test/lib/mtr_misc.pl
View file @
a581ed72
...
@@ -96,7 +96,16 @@ sub mtr_exe_exists (@) {
...
@@ -96,7 +96,16 @@ sub mtr_exe_exists (@) {
map
{
$_
.=
"
.exe
"}
@path
if
$::glob_win32
;
map
{
$_
.=
"
.exe
"}
@path
if
$::glob_win32
;
foreach
my
$path
(
@path
)
foreach
my
$path
(
@path
)
{
{
return
$path
if
-
x
$path
;
if
(
-
x
$path
)
{
if
(
$::glob_cygwin_perl
)
{
$path
=
`
cygpath -w
$path
`;
# Chop off the \n that cygpath adds
$path
=~
s/\n//
;
}
return
$path
;
}
}
}
if
(
@path
==
1
)
if
(
@path
==
1
)
{
{
...
...
mysql-test/mysql-test-run.pl
View file @
a581ed72
...
@@ -668,6 +668,9 @@ sub command_line_setup () {
...
@@ -668,6 +668,9 @@ sub command_line_setup () {
$opt_vardir
=
"
$glob_mysql_test_dir
/var
";
$opt_vardir
=
"
$glob_mysql_test_dir
/var
";
}
}
$opt_vardir_trace
=
$opt_vardir
;
$opt_vardir_trace
=
$opt_vardir
;
# Chop off any "c:", DBUG likes a unix path ex: c:/src/... => /src/...
$opt_vardir_trace
=~
s/^\w://
;
# We make the path absolute, as the server will do a chdir() before usage
# We make the path absolute, as the server will do a chdir() before usage
unless
(
$opt_vardir
=~
m,^/,
or
unless
(
$opt_vardir
=~
m,^/,
or
(
$glob_win32
and
$opt_vardir
=~
m,^[a-z]:/,i
)
)
(
$glob_win32
and
$opt_vardir
=~
m,^[a-z]:/,i
)
)
...
...
mysql-test/t/mysqldump.test
View file @
a581ed72
...
@@ -830,8 +830,8 @@ DROP TABLE t1, t2;
...
@@ -830,8 +830,8 @@ DROP TABLE t1, t2;
# Bugs #9136, #12917: problems with --defaults-extra-file option
# Bugs #9136, #12917: problems with --defaults-extra-file option
#
#
--
system
echo
"[mysqltest1]"
>
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
--
system
echo
'[mysqltest1]'
>
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
--
system
echo
"port=1234"
>>
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
--
system
echo
'port=1234'
>>
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
--
exec
$MYSQL_MY_PRINT_DEFAULTS
-
c
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
mysqltest1
--
exec
$MYSQL_MY_PRINT_DEFAULTS
-
c
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
mysqltest1
--
exec
$MYSQL_MY_PRINT_DEFAULTS
-
e
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
mysqltest1
mysqltest1
--
exec
$MYSQL_MY_PRINT_DEFAULTS
-
e
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
mysqltest1
mysqltest1
--
system
rm
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
--
system
rm
$MYSQLTEST_VARDIR
/
tmp
/
tmp
.
cnf
...
...
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