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
2c5308a7
Commit
2c5308a7
authored
Jul 13, 2006
by
cmiller@zippy.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge zippy.(none):/home/cmiller/work/mysql/merge/mysql-5.0
into zippy.(none):/home/cmiller/work/mysql/m50-maint--07C2P
parents
bd183d42
4980c64a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
8 deletions
+22
-8
configure.in
configure.in
+1
-1
mysql-test/lib/mtr_cases.pl
mysql-test/lib/mtr_cases.pl
+1
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+1
-0
scripts/mysqld_safe.sh
scripts/mysqld_safe.sh
+7
-4
tests/mysql_client_test.c
tests/mysql_client_test.c
+12
-2
No files found.
configure.in
View file @
2c5308a7
...
@@ -651,7 +651,7 @@ AC_ARG_ENABLE(assembler,
...
@@ -651,7 +651,7 @@ AC_ARG_ENABLE(assembler,
AC_MSG_CHECKING
(
if
we should use assembler functions
)
AC_MSG_CHECKING
(
if
we should use assembler functions
)
# For now we only support assembler on i386 and sparc systems
# For now we only support assembler on i386 and sparc systems
AM_CONDITIONAL
(
ASSEMBLER_x86,
test
"
$ENABLE_ASSEMBLER
"
=
"yes"
-a
"
$BASE_MACHINE_TYPE
"
=
"i386"
)
AM_CONDITIONAL
(
ASSEMBLER_x86,
test
"
$ENABLE_ASSEMBLER
"
=
"yes"
-a
"
$BASE_MACHINE_TYPE
"
=
"i386"
&&
$AS
strings/strings-x86.s
-o
checkassembler
>
/dev/null 2>&1
&&
test
-f
checkassembler
&&
(
rm
-f
checkassembler
;
exit
0
;
)
)
AM_CONDITIONAL
(
ASSEMBLER_sparc32,
test
"
$ENABLE_ASSEMBLER
"
=
"yes"
-a
"
$BASE_MACHINE_TYPE
"
=
"sparc"
)
AM_CONDITIONAL
(
ASSEMBLER_sparc32,
test
"
$ENABLE_ASSEMBLER
"
=
"yes"
-a
"
$BASE_MACHINE_TYPE
"
=
"sparc"
)
AM_CONDITIONAL
(
ASSEMBLER_sparc64,
test
"
$ENABLE_ASSEMBLER
"
=
"yes"
-a
"
$BASE_MACHINE_TYPE
"
=
"sparcv9"
)
AM_CONDITIONAL
(
ASSEMBLER_sparc64,
test
"
$ENABLE_ASSEMBLER
"
=
"yes"
-a
"
$BASE_MACHINE_TYPE
"
=
"sparcv9"
)
AM_CONDITIONAL
(
ASSEMBLER,
test
"
$ASSEMBLER_x86_TRUE
"
=
""
-o
"
$ASSEMBLER_sparc32_TRUE
"
=
""
)
AM_CONDITIONAL
(
ASSEMBLER,
test
"
$ASSEMBLER_x86_TRUE
"
=
""
-o
"
$ASSEMBLER_sparc32_TRUE
"
=
""
)
...
...
mysql-test/lib/mtr_cases.pl
View file @
2c5308a7
...
@@ -116,7 +116,7 @@ sub collect_test_cases ($) {
...
@@ -116,7 +116,7 @@ sub collect_test_cases ($) {
while
(
<
DISABLED
>
)
while
(
<
DISABLED
>
)
{
{
chomp
;
chomp
;
if
(
/^\s*(
\S
+)\s*:\s*(.*?)\s*$/
)
if
(
/^\s*(
[^\s:]
+)\s*:\s*(.*?)\s*$/
)
{
{
$disabled
{
$1
}
=
$2
;
$disabled
{
$1
}
=
$2
;
}
}
...
...
mysql-test/mysql-test-run.pl
View file @
2c5308a7
...
@@ -3074,6 +3074,7 @@ sub run_mysqltest ($) {
...
@@ -3074,6 +3074,7 @@ sub run_mysqltest ($) {
my
$cmdline_mysql_client_test
=
my
$cmdline_mysql_client_test
=
"
$exe_mysql_client_test
--no-defaults --testcase --user=root --silent
"
.
"
$exe_mysql_client_test
--no-defaults --testcase --user=root --silent
"
.
"
--port=
$master
->[0]->{'path_myport'}
"
.
"
--port=
$master
->[0]->{'path_myport'}
"
.
"
--vardir=
$opt_vardir
"
.
"
--socket=
$master
->[0]->{'path_mysock'}
";
"
--socket=
$master
->[0]->{'path_mysock'}
";
if
(
$glob_use_embedded_server
)
if
(
$glob_use_embedded_server
)
...
...
scripts/mysqld_safe.sh
View file @
2c5308a7
...
@@ -321,10 +321,13 @@ then
...
@@ -321,10 +321,13 @@ then
ulimit
-n
$open_files
ulimit
-n
$open_files
args
=
"--open-files-limit=
$open_files
$args
"
args
=
"--open-files-limit=
$open_files
$args
"
fi
fi
if
test
-n
"
$core_file_size
"
fi
then
# Try to set the core file size (even if we aren't root) because many systems
# don't specify a hard limit on core file size.
if
test
-n
"
$core_file_size
"
then
ulimit
-c
$core_file_size
ulimit
-c
$core_file_size
fi
fi
fi
#
#
...
...
tests/mysql_client_test.c
View file @
2c5308a7
...
@@ -58,6 +58,7 @@ static unsigned int iter_count= 0;
...
@@ -58,6 +58,7 @@ static unsigned int iter_count= 0;
static
my_bool
have_innodb
=
FALSE
;
static
my_bool
have_innodb
=
FALSE
;
static
const
char
*
opt_basedir
=
"./"
;
static
const
char
*
opt_basedir
=
"./"
;
static
const
char
*
opt_vardir
=
"mysql-test/var"
;
static
longlong
opt_getopt_ll_test
=
0
;
static
longlong
opt_getopt_ll_test
=
0
;
...
@@ -14883,6 +14884,7 @@ static void test_bug17667()
...
@@ -14883,6 +14884,7 @@ static void test_bug17667()
struct
buffer_and_length
*
statement_cursor
;
struct
buffer_and_length
*
statement_cursor
;
FILE
*
log_file
;
FILE
*
log_file
;
char
*
master_log_filename
;
myheader
(
"test_bug17667"
);
myheader
(
"test_bug17667"
);
...
@@ -14894,7 +14896,13 @@ static void test_bug17667()
...
@@ -14894,7 +14896,13 @@ static void test_bug17667()
}
}
sleep
(
1
);
/* The server may need time to flush the data to the log. */
sleep
(
1
);
/* The server may need time to flush the data to the log. */
log_file
=
fopen
(
"var/log/master.log"
,
"r"
);
master_log_filename
=
(
char
*
)
malloc
(
strlen
(
opt_vardir
)
+
strlen
(
"/log/master.log"
)
+
1
);
strcpy
(
master_log_filename
,
opt_vardir
);
strcat
(
master_log_filename
,
"/log/master.log"
);
log_file
=
fopen
(
master_log_filename
,
"r"
);
free
(
master_log_filename
);
if
(
log_file
!=
NULL
)
{
if
(
log_file
!=
NULL
)
{
for
(
statement_cursor
=
statements
;
statement_cursor
->
buffer
!=
NULL
;
for
(
statement_cursor
=
statements
;
statement_cursor
->
buffer
!=
NULL
;
...
@@ -14918,7 +14926,7 @@ static void test_bug17667()
...
@@ -14918,7 +14926,7 @@ static void test_bug17667()
}
}
else
else
{
{
fprintf
(
stderr
,
"Could not find the log file,
var
/log/master.log, so "
fprintf
(
stderr
,
"Could not find the log file,
VARDIR
/log/master.log, so "
"test_bug17667 is
\n
inconclusive. Run test from the "
"test_bug17667 is
\n
inconclusive. Run test from the "
"mysql-test/mysql-test-run* program
\n
to set up the correct "
"mysql-test/mysql-test-run* program
\n
to set up the correct "
"environment for this test.
\n\n
"
);
"environment for this test.
\n\n
"
);
...
@@ -15062,6 +15070,8 @@ static struct my_option client_test_long_options[] =
...
@@ -15062,6 +15070,8 @@ static struct my_option client_test_long_options[] =
{
"user"
,
'u'
,
"User for login if not current user"
,
(
char
**
)
&
opt_user
,
{
"user"
,
'u'
,
"User for login if not current user"
,
(
char
**
)
&
opt_user
,
(
char
**
)
&
opt_user
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
(
char
**
)
&
opt_user
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
#endif
#endif
{
"vardir"
,
'v'
,
"Data dir for tests."
,
(
gptr
*
)
&
opt_vardir
,
(
gptr
*
)
&
opt_vardir
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"getopt-ll-test"
,
'g'
,
"Option for testing bug in getopt library"
,
{
"getopt-ll-test"
,
'g'
,
"Option for testing bug in getopt library"
,
(
char
**
)
&
opt_getopt_ll_test
,
(
char
**
)
&
opt_getopt_ll_test
,
0
,
(
char
**
)
&
opt_getopt_ll_test
,
(
char
**
)
&
opt_getopt_ll_test
,
0
,
GET_LL
,
REQUIRED_ARG
,
0
,
0
,
LONGLONG_MAX
,
0
,
0
,
0
},
GET_LL
,
REQUIRED_ARG
,
0
,
0
,
LONGLONG_MAX
,
0
,
0
,
0
},
...
...
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