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
aa24eb1a
Commit
aa24eb1a
authored
Dec 07, 2009
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge
parents
abb435ab
14b527a9
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
22 deletions
+23
-22
BUILD/FINISH.sh
BUILD/FINISH.sh
+3
-3
BUILD/SETUP.sh
BUILD/SETUP.sh
+8
-0
extra/yassl/taocrypt/include/block.hpp
extra/yassl/taocrypt/include/block.hpp
+2
-1
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_cases.pm
+1
-11
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+7
-4
plugin/fulltext/plugin_example.c
plugin/fulltext/plugin_example.c
+2
-2
vio/viosslfactories.c
vio/viosslfactories.c
+0
-1
No files found.
BUILD/FINISH.sh
View file @
aa24eb1a
cflags
=
"
$c_warnings
$extra_flags
"
cflags
=
"
$c_warnings
$extra_flags
$EXTRA_FLAGS
$EXTRA_CFLAGS
"
cxxflags
=
"
$cxx_warnings
$base_cxxflags
$extra_flags
"
cxxflags
=
"
$cxx_warnings
$base_cxxflags
$extra_flags
$EXTRA_FLAGS
$EXTRA_CXXFLAGS
"
extra_configs
=
"
$extra_configs
$local_infile_configs
"
extra_configs
=
"
$extra_configs
$local_infile_configs
$EXTRA_CONFIGS
"
configure
=
"./configure
$base_configs
$extra_configs
"
configure
=
"./configure
$base_configs
$extra_configs
"
commands
=
"
\
commands
=
"
\
...
...
BUILD/SETUP.sh
View file @
aa24eb1a
...
@@ -34,6 +34,14 @@ parse_options()
...
@@ -34,6 +34,14 @@ parse_options()
full_debug
=
"=full"
;;
full_debug
=
"=full"
;;
--warning-mode
=
*
)
--warning-mode
=
*
)
warning_mode
=
`
get_key_value
"
$1
"
`
;;
warning_mode
=
`
get_key_value
"
$1
"
`
;;
--extra-flags
=
*
)
EXTRA_FLAGS
=
`
get_key_value
"
$1
"
`
;;
--extra-cflags
=
*
)
EXTRA_CFLAGS
=
`
get_key_value
"
$1
"
`
;;
--extra-cxxflags
=
*
)
EXTRA_CXXFLAGS
=
`
get_key_value
"
$1
"
`
;;
--extra-configs
=
*
)
EXTRA_CONFIGS
=
`
get_key_value
"
$1
"
`
;;
-c
|
--just-configure
)
-c
|
--just-configure
)
just_configure
=
1
;;
just_configure
=
1
;;
-n
|
--just-print
|
--print
)
-n
|
--just-print
|
--print
)
...
...
extra/yassl/taocrypt/include/block.hpp
View file @
aa24eb1a
...
@@ -167,7 +167,8 @@ public:
...
@@ -167,7 +167,8 @@ public:
void
CleanNew
(
word32
newSize
)
void
CleanNew
(
word32
newSize
)
{
{
New
(
newSize
);
New
(
newSize
);
memset
(
buffer_
,
0
,
sz_
*
sizeof
(
T
));
if
(
sz_
>
0
)
memset
(
buffer_
,
0
,
sz_
*
sizeof
(
T
));
}
}
void
New
(
word32
newSize
)
void
New
(
word32
newSize
)
...
...
mysql-test/lib/mtr_cases.pm
View file @
aa24eb1a
...
@@ -101,7 +101,6 @@ sub init_pattern {
...
@@ -101,7 +101,6 @@ sub init_pattern {
sub
collect_test_cases
($$)
{
sub
collect_test_cases
($$)
{
my
$suites
=
shift
;
# Semicolon separated list of test suites
my
$suites
=
shift
;
# Semicolon separated list of test suites
my
%
found_suites
;
my
$opt_cases
=
shift
;
my
$opt_cases
=
shift
;
my
$cases
=
[]
;
# Array of hash(one hash for each testcase)
my
$cases
=
[]
;
# Array of hash(one hash for each testcase)
...
@@ -115,7 +114,6 @@ sub collect_test_cases ($$) {
...
@@ -115,7 +114,6 @@ sub collect_test_cases ($$) {
["
ha_innodb_plugin.dll
",
"
ha_innodb_plugin.so
",
["
ha_innodb_plugin.dll
",
"
ha_innodb_plugin.so
",
"
ha_innodb_plugin.sl
"],
"
ha_innodb_plugin.sl
"],
NOT_REQUIRED
);
NOT_REQUIRED
);
$do_innodb_plugin
=
(
$::mysql_version_id
>=
50100
&&
$do_innodb_plugin
=
(
$::mysql_version_id
>=
50100
&&
!
(
IS_WINDOWS
&&
$::opt_embedded_server
)
&&
!
(
IS_WINDOWS
&&
$::opt_embedded_server
)
&&
$lib_innodb_plugin
);
$lib_innodb_plugin
);
...
@@ -123,7 +121,6 @@ sub collect_test_cases ($$) {
...
@@ -123,7 +121,6 @@ sub collect_test_cases ($$) {
foreach
my
$suite
(
split
("
,
",
$suites
))
foreach
my
$suite
(
split
("
,
",
$suites
))
{
{
push
(
@$cases
,
collect_one_suite
(
$suite
,
$opt_cases
));
push
(
@$cases
,
collect_one_suite
(
$suite
,
$opt_cases
));
$found_suites
{
$suite
}
=
1
;
last
if
$some_test_found
;
last
if
$some_test_found
;
}
}
...
@@ -136,12 +133,6 @@ sub collect_test_cases ($$) {
...
@@ -136,12 +133,6 @@ sub collect_test_cases ($$) {
{
{
my
$found
=
0
;
my
$found
=
0
;
my
(
$sname
,
$tname
,
$extension
)
=
split_testname
(
$test_name_spec
);
my
(
$sname
,
$tname
,
$extension
)
=
split_testname
(
$test_name_spec
);
if
(
defined
(
$sname
)
&&
!
defined
(
$found_suites
{
$sname
}))
{
$found_suites
{
$sname
}
=
1
;
push
(
@$cases
,
collect_one_suite
(
$sname
));
}
foreach
my
$test
(
@$cases
)
foreach
my
$test
(
@$cases
)
{
{
# test->{name} is always in suite.name format
# test->{name} is always in suite.name format
...
@@ -247,7 +238,7 @@ sub split_testname {
...
@@ -247,7 +238,7 @@ sub split_testname {
}
}
sub
collect_one_suite
($)
sub
collect_one_suite
{
{
my
$suite
=
shift
;
# Test suite name
my
$suite
=
shift
;
# Test suite name
my
$opt_cases
=
shift
;
my
$opt_cases
=
shift
;
...
@@ -767,7 +758,6 @@ sub process_opts_file {
...
@@ -767,7 +758,6 @@ sub process_opts_file {
}
}
}
}
##############################################################################
##############################################################################
#
#
# Collect information about a single test case
# Collect information about a single test case
...
...
mysql-test/mysql-test-run.pl
View file @
aa24eb1a
...
@@ -5683,12 +5683,15 @@ Misc options
...
@@ -5683,12 +5683,15 @@ Misc options
servers to exit before finishing the process
servers to exit before finishing the process
fast Run as fast as possible, dont't wait for servers
fast Run as fast as possible, dont't wait for servers
to shutdown etc.
to shutdown etc.
parallel=N Run tests in N parallel threads (default
=
1)
parallel=N Run tests in N parallel threads (default
1)
Use parallel=auto for auto-setting of N
Use parallel=auto for auto-setting of N
repeat=N Run each test N number of times
repeat=N Run each test N number of times
retry=N Retry tests that fail N times, limit number of failures
retry=N Retry tests that fail up to N times (default $opt_retry).
to $opt_retry_failure
Retries are also limited by the maximum number of
retry-failure=N Limit number of retries for a failed test
failures before stopping, set with the --retry-failure
option
retry-failure=N When using the --retry option to retry failed tests,
stop when N failures have occured (default $opt_retry_failure)
reorder Reorder tests to get fewer server restarts
reorder Reorder tests to get fewer server restarts
help Get this help text
help Get this help text
...
...
plugin/fulltext/plugin_example.c
View file @
aa24eb1a
...
@@ -145,7 +145,7 @@ static int simple_parser_deinit(MYSQL_FTPARSER_PARAM *param
...
@@ -145,7 +145,7 @@ static int simple_parser_deinit(MYSQL_FTPARSER_PARAM *param
the list of search terms when parsing a search string.
the list of search terms when parsing a search string.
*/
*/
static
void
add_word
(
MYSQL_FTPARSER_PARAM
*
param
,
char
*
word
,
size_t
len
)
static
void
add_word
(
MYSQL_FTPARSER_PARAM
*
param
,
c
onst
unsigned
c
har
*
word
,
size_t
len
)
{
{
MYSQL_FTPARSER_BOOLEAN_INFO
bool_info
=
MYSQL_FTPARSER_BOOLEAN_INFO
bool_info
=
{
FT_TOKEN_WORD
,
0
,
0
,
0
,
0
,
' '
,
0
};
{
FT_TOKEN_WORD
,
0
,
0
,
0
,
0
,
' '
,
0
};
...
@@ -169,7 +169,7 @@ static void add_word(MYSQL_FTPARSER_PARAM *param, char *word, size_t len)
...
@@ -169,7 +169,7 @@ static void add_word(MYSQL_FTPARSER_PARAM *param, char *word, size_t len)
static
int
simple_parser_parse
(
MYSQL_FTPARSER_PARAM
*
param
)
static
int
simple_parser_parse
(
MYSQL_FTPARSER_PARAM
*
param
)
{
{
char
*
end
,
*
start
,
*
docend
=
param
->
doc
+
param
->
length
;
c
onst
unsigned
c
har
*
end
,
*
start
,
*
docend
=
param
->
doc
+
param
->
length
;
number_of_calls
++
;
number_of_calls
++
;
...
...
vio/viosslfactories.c
View file @
aa24eb1a
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
static
my_bool
ssl_algorithms_added
=
FALSE
;
static
my_bool
ssl_algorithms_added
=
FALSE
;
static
my_bool
ssl_error_strings_loaded
=
FALSE
;
static
my_bool
ssl_error_strings_loaded
=
FALSE
;
static
int
verify_depth
=
0
;
static
unsigned
char
dh512_p
[]
=
static
unsigned
char
dh512_p
[]
=
{
{
...
...
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