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
003a2315
Commit
003a2315
authored
Sep 30, 2010
by
Bernt M. Johnsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#56375 Ignore socket path since it may vary. Added some comments to
inline perl in the test.
parent
3be2bf76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
mysql-test/include/mysqld--help.inc
mysql-test/include/mysqld--help.inc
+14
-2
mysql-test/r/mysqld--help-notwin.result
mysql-test/r/mysqld--help-notwin.result
+0
-1
No files found.
mysql-test/include/mysqld--help.inc
View file @
003a2315
...
...
@@ -7,15 +7,27 @@
# force lower-case-table-names=1 (linux/macosx have different defaults)
# force symbolic-links=0 (valgrind build has a different default)
#
exec
$MYSQLD_BOOTSTRAP_CMD
--
symbolic
-
links
=
0
--
lower
-
case
-
table
-
names
=
1
--
help
--
verbose
>
$MYSQL_TMP_DIR
/
mysqld
--
help
.
txt
2
>&
1
;
# The inline perl code below will copy $MYSQL_TMP_DIR/mysqld--help.txt
# to output, but filter away some variable stuff (e.g. paths).
perl
;
# Variables which we don't want to display in the result file since
# their paths may vary:
@
skipvars
=
qw
/
basedir
open
-
files
-
limit
general
-
log
-
file
log
plugin
-
dir
log
-
slow
-
queries
pid
-
file
slow
-
query
-
log
-
file
datadir
slave
-
load
-
tmpdir
tmpdir
/
;
datadir
slave
-
load
-
tmpdir
tmpdir
socket
/
;
# Plugins which may or may not be there:
@
plugins
=
qw
/
innodb
ndb
archive
blackhole
federated
partition
ndbcluster
debug
temp
-
pool
ssl
des
-
key
-
file
thread
-
concurrency
super
-
large
-
pages
mutex
-
deadlock
-
detector
null
-
audit
/
;
@
env
=
qw
/
MYSQLTEST_VARDIR
MYSQL_TEST_DIR
MYSQL_LIBDIR
MYSQL_CHARSETSDIR
MYSQL_SHAREDIR
/
;
# And substitute the content some environment variables with their
# names:
@
env
=
qw
/
MYSQLTEST_VARDIR
MYSQL_TEST_DIR
MYSQL_LIBDIR
MYSQL_CHARSETSDIR
MYSQL_SHAREDIR
/
;
$re1
=
join
(
'|'
,
@
skipvars
,
@
plugins
);
$re2
=
join
(
'|'
,
@
plugins
);
$skip
=
0
;
...
...
mysql-test/r/mysqld--help-notwin.result
View file @
003a2315
...
...
@@ -913,7 +913,6 @@ slave-transaction-retries 10
slave-type-conversions
slow-launch-time 2
slow-query-log FALSE
socket /tmp/mysql.sock
sort-buffer-size 2097152
sporadic-binlog-dump-fail FALSE
sql-mode
...
...
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