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
6b041ea7
Commit
6b041ea7
authored
Nov 28, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No need to have a "created_by_mem" file, just read the link and
if that is same as opt_mem it can be removed
parent
cc203dd6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+3
-9
No files found.
mysql-test/mysql-test-run.pl
View file @
6b041ea7
...
...
@@ -1893,10 +1893,6 @@ sub kill_running_servers () {
}
}
sub
created_by_mem_filename
(){
return
"
$glob_mysql_test_dir
/var/created_by_mem
";
}
#
# Remove var and any directories in var/ created by previous
...
...
@@ -1919,14 +1915,16 @@ sub remove_stale_vardir () {
if
(
-
l
$opt_vardir
)
{
# var is a symlink
if
(
-
f
created_by_mem_filename
()
)
if
(
readlink
(
$opt_vardir
)
eq
$opt_mem
)
{
# Remove the directory which the link points at
mtr_verbose
("
Removing
"
.
readlink
(
$opt_vardir
));
rmtree
(
readlink
(
$opt_vardir
));
# Remove the entire "var" dir
mtr_verbose
("
Removing
$opt_vardir
/
");
rmtree
("
$opt_vardir
/
");
# Remove the "var" symlink
mtr_verbose
("
unlink(
$opt_vardir
)
");
unlink
(
$opt_vardir
);
...
...
@@ -1984,10 +1982,6 @@ sub setup_vardir() {
mtr_report
("
Symlinking 'var' to '
$opt_mem
'
");
symlink
(
$opt_mem
,
$opt_vardir
);
# Put a small file to recognize this dir was created by --mem
mtr_verbose
("
Creating
"
.
created_by_mem_filename
());
mtr_tofile
(
created_by_mem_filename
(),
$opt_mem
);
}
mkpath
("
$opt_vardir
/log
");
...
...
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