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
29fabf3a
Commit
29fabf3a
authored
Dec 18, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for purify
mysql-test/mysql-test-run.sh: Increased sleep times
parent
e4921f21
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+8
-5
strings/bcmp.c
strings/bcmp.c
+1
-0
No files found.
mysql-test/mysql-test-run.sh
View file @
29fabf3a
...
...
@@ -51,6 +51,7 @@ sleep_until_file_deleted ()
do
if
[
!
-e
$file
]
then
sleep
$SLEEP_TIME_AFTER_RESTART
return
fi
loop
=
`
expr
$loop
- 1
`
...
...
@@ -172,10 +173,11 @@ DO_GDB=""
MANUAL_GDB
=
""
DO_DDD
=
""
DO_CLIENT_GDB
=
""
SLEEP_TIME_AFTER_RESTART
=
1
SLEEP_TIME_FOR_DELETE
=
10
SLEEP_TIME_FOR_FIRST_MASTER
=
2
00
# Enough time to create innodb tables
SLEEP_TIME_FOR_FIRST_MASTER
=
4
00
# Enough time to create innodb tables
SLEEP_TIME_FOR_SECOND_MASTER
=
30
SLEEP_TIME_FOR_FIRST_SLAVE
=
3
0
SLEEP_TIME_FOR_FIRST_SLAVE
=
40
0
SLEEP_TIME_FOR_SECOND_SLAVE
=
30
CHARACTER_SET
=
latin1
DBUSER
=
""
...
...
@@ -214,9 +216,9 @@ while test $# -gt 0; do
--start-and-exit
)
START_AND_EXIT
=
1
;;
--skip-inno
base
)
EXTRA_MASTER_MYSQLD_OPT
=
"
$EXTRA_MASTER_MYSQLD_OPT
--skip-inno
base
"
EXTRA_SLAVE_MYSQLD_OPT
=
"
$EXTRA_SLAVE_MYSQLD_OPT
--skip-inno
base
"
;;
--skip-inno
db
)
EXTRA_MASTER_MYSQLD_OPT
=
"
$EXTRA_MASTER_MYSQLD_OPT
--skip-inno
db
"
EXTRA_SLAVE_MYSQLD_OPT
=
"
$EXTRA_SLAVE_MYSQLD_OPT
--skip-inno
db
"
;;
--skip-bdb
)
EXTRA_MASTER_MYSQLD_OPT
=
"
$EXTRA_MASTER_MYSQLD_OPT
--skip-bdb"
EXTRA_SLAVE_MYSQLD_OPT
=
"
$EXTRA_SLAVE_MYSQLD_OPT
--skip-bdb"
;;
...
...
@@ -239,6 +241,7 @@ while test $# -gt 0; do
EXTRA_MYSQL_TEST_OPT
=
"
$EXTRA_MYSQL_TEST_OPT
$1
"
;;
--sleep
=
*
)
EXTRA_MYSQL_TEST_OPT
=
"
$EXTRA_MYSQL_TEST_OPT
$1
"
SLEEP_TIME_AFTER_RESTART
=
"
$1
"
;;
--mysqld
=
*
)
TMP
=
`
$ECHO
"
$1
"
|
$SED
-e
"s;--mysqld=;;"
`
...
...
strings/bcmp.c
View file @
29fabf3a
...
...
@@ -26,6 +26,7 @@
#include "m_string.h"
#ifdef HAVE_purify
#undef bcmp
#undef HAVE_BCMP
#endif
...
...
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