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
46eda5b9
Commit
46eda5b9
authored
Mar 29, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Shift skipping of some tests with embedded server from within
mysql-test-run to the tests themselves.
parent
eecb813c
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
7 deletions
+16
-7
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+0
-6
mysql-test/t/bdb-deadlock.test
mysql-test/t/bdb-deadlock.test
+1
-1
mysql-test/t/connect.test
mysql-test/t/connect.test
+3
-0
mysql-test/t/flush_block_commit.test
mysql-test/t/flush_block_commit.test
+4
-0
mysql-test/t/grant.test
mysql-test/t/grant.test
+3
-0
mysql-test/t/grant2.test
mysql-test/t/grant2.test
+3
-0
mysql-test/t/grant_cache.test
mysql-test/t/grant_cache.test
+2
-0
No files found.
mysql-test/mysql-test-run.sh
View file @
46eda5b9
...
...
@@ -1506,12 +1506,6 @@ run_testcase ()
# script soon anyway so it is not worth it spending the time
if
[
"x
$USE_EMBEDDED_SERVER
"
=
"x1"
-a
-z
"
$DO_TEST
"
]
;
then
for
t
in
\
"bdb-deadlock"
\
"connect"
\
"flush_block_commit"
\
"grant2"
\
"grant_cache"
\
"grant"
\
"init_connect"
\
"init_file"
\
"innodb"
\
...
...
mysql-test/t/bdb-deadlock.test
View file @
46eda5b9
...
...
@@ -5,7 +5,7 @@
# connection in a separate thread.
#
#
-- source include/not_embedded.inc
--
source
include
/
not_embedded
.
inc
--
source
include
/
have_bdb
.
inc
connect
(
con1
,
localhost
,
root
,,);
...
...
mysql-test/t/connect.test
View file @
46eda5b9
...
...
@@ -3,6 +3,9 @@
# Unfortunately the check is incomplete as we can't handle errors on connect
# Also we can't connect without database
# This test makes no sense with the embedded server
--
source
include
/
not_embedded
.
inc
#connect (con1,localhost,root,,"");
#show tables;
connect
(
con1
,
localhost
,
root
,,
mysql
);
...
...
mysql-test/t/flush_block_commit.test
View file @
46eda5b9
...
...
@@ -3,6 +3,10 @@
# We verify that we did not introduce a deadlock.
# This is intended to mimick how mysqldump and innobackup work.
# This test doesn't work with the embedded server
--
source
include
/
not_embedded
.
inc
# And it requires InnoDB
--
source
include
/
have_innodb
.
inc
connect
(
con1
,
localhost
,
root
,,);
...
...
mysql-test/t/grant.test
View file @
46eda5b9
# Test of GRANT commands
# Grant tests not performed with embedded server
--
source
include
/
not_embedded
.
inc
# Cleanup
--
disable_warnings
drop
table
if
exists
t1
;
...
...
mysql-test/t/grant2.test
View file @
46eda5b9
# Grant tests not performed with embedded server
--
source
include
/
not_embedded
.
inc
SET
NAMES
binary
;
#
...
...
mysql-test/t/grant_cache.test
View file @
46eda5b9
# Grant tests not performed with embedded server
--
source
include
/
not_embedded
.
inc
--
source
include
/
have_query_cache
.
inc
#
...
...
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