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
cf987efb
Commit
cf987efb
authored
Oct 13, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated after testing
parent
7d29c2a4
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
203 additions
and
2569 deletions
+203
-2569
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+2
-2
mysql-test/r/compress.result
mysql-test/r/compress.result
+61
-850
mysql-test/r/ssl.result
mysql-test/r/ssl.result
+61
-850
mysql-test/r/ssl_compress.result
mysql-test/r/ssl_compress.result
+64
-850
mysql-test/t/compress.test
mysql-test/t/compress.test
+4
-6
mysql-test/t/ssl.test
mysql-test/t/ssl.test
+4
-5
mysql-test/t/ssl_compress.test
mysql-test/t/ssl_compress.test
+7
-6
No files found.
mysql-test/mysql-test-run.pl
View file @
cf987efb
...
...
@@ -1166,7 +1166,7 @@ sub check_ssl_support () {
mtr_error
("
Couldn't find support for SSL
");
return
;
}
mtr_report
("
Skipping SSL, mysqld
does not support it
");
mtr_report
("
Skipping SSL, mysqld
not compiled with SSL
");
$opt_ssl_supported
=
0
;
$opt_ssl
=
0
;
return
;
...
...
@@ -1205,7 +1205,7 @@ sub check_ndbcluster_support () {
"
--help
"],
"",
"
/dev/null
",
"
/dev/null
",
"")
!=
0
)
{
mtr_report
("
Skipping ndbcluster, mysqld
does not support it
");
mtr_report
("
Skipping ndbcluster, mysqld
not compiled with ndbcluster
");
$opt_with_ndbcluster
=
0
;
return
;
}
...
...
mysql-test/r/compress.result
View file @
cf987efb
This diff is collapsed.
Click to expand it.
mysql-test/r/ssl.result
View file @
cf987efb
This diff is collapsed.
Click to expand it.
mysql-test/r/ssl_compress.result
View file @
cf987efb
This diff is collapsed.
Click to expand it.
mysql-test/t/compress.test
View file @
cf987efb
...
...
@@ -3,15 +3,13 @@
--
source
include
/
have_compress
.
inc
# Reconnect to turn compress on for
# default connection
disconnect
default
;
connect
(
default
,
localhost
,
root
,,,,,
COMPRESS
);
connect
(
comp_con
,
localhost
,
root
,,,,,
COMPRESS
);
# Check compression turned on
SHOW
STATUS
LIKE
'Compression'
;
# Source select test case
--
source
t
/
select
.
test
--
source
include
/
common
-
tests
.
inc
# Check compression turned on
SHOW
STATUS
LIKE
'Compression'
;
mysql-test/t/ssl.test
View file @
cf987efb
...
...
@@ -3,16 +3,15 @@
--
source
include
/
have_openssl
.
inc
# Reconnect to turn ssl on for
# default connection
disconnect
default
;
connect
(
default
,
localhost
,
root
,,,,,
SSL
);
connect
(
ssl_con
,
localhost
,
root
,,,,,
SSL
);
# Check ssl turned on
SHOW
STATUS
LIKE
'Ssl_cipher'
;
# Source select test case
--
source
t
/
select
.
test
--
source
include
/
common
-
tests
.
inc
# Check ssl turned on
SHOW
STATUS
LIKE
'Ssl_cipher'
;
mysql-test/t/ssl_compress.test
View file @
cf987efb
...
...
@@ -4,11 +4,7 @@
--
source
include
/
have_openssl
.
inc
--
source
include
/
have_compress
.
inc
# Reconnect to turn ssl and compress on for
# default connection
disconnect
default
;
connect
(
default
,
localhost
,
root
,,,,,
SSL
COMPRESS
);
connect
(
ssl_compress_con
,
localhost
,
root
,,,,,
SSL
COMPRESS
);
# Check ssl turned on
SHOW
STATUS
LIKE
'Ssl_cipher'
;
...
...
@@ -17,5 +13,10 @@ SHOW STATUS LIKE 'Ssl_cipher';
SHOW
STATUS
LIKE
'Compression'
;
# Source select test case
--
source
t
/
select
.
test
--
source
include
/
common
-
tests
.
inc
# Check ssl turned on
SHOW
STATUS
LIKE
'Ssl_cipher'
;
# Check compression turned on
SHOW
STATUS
LIKE
'Compression'
;
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