Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
daf3b395
Commit
daf3b395
authored
14 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
Use mkdir() instead of !mkdir in test 73, it's more reliable.
parent
673b87b5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/testdir/Make_dos.mak
+1
-2
1 addition, 2 deletions
src/testdir/Make_dos.mak
src/testdir/test73.in
+8
-8
8 additions, 8 deletions
src/testdir/test73.in
with
9 additions
and
10 deletions
src/testdir/Make_dos.mak
+
1
−
2
View file @
daf3b395
...
...
@@ -59,8 +59,6 @@ clean:
-
if
exist mbyte.vim del mbyte.vim
-
if
exist mzscheme.vim del mzscheme.vim
-
del X
*
-
del X
*
.
*
-
if
exists Xfind
rmdir
/S /Q Xfind
-
if
exist viminfo del viminfo
.in.out
:
...
...
@@ -72,4 +70,5 @@ clean:
-
del X
*
-
del X
*
.
*
-
del test.ok
-
rmdir
/s /q Xfind
-
if
exist viminfo del viminfo
This diff is collapsed.
Click to expand it.
src/testdir/test73.in
+
8
−
8
View file @
daf3b395
...
...
@@ -22,7 +22,7 @@ STARTTEST
:new
:let cwd=getcwd()
:let test_out = cwd . '/test.out'
:
silent !
mkdir
Xfind
:
call
mkdir
('
Xfind
')
:cd Xfind
:set path=
:find
...
...
@@ -45,9 +45,9 @@ STARTTEST
:close
:new
:" We shouldn't find any file at this point, test.out must be empty.
:
silent !mkdir in
:
call mkdir('in')
:cd in
:
silent !
mkdir
path
:
call
mkdir
('
path
')
:exec "cd " . cwd
:e Xfind/file.txt
SHoly Grail:w
...
...
@@ -103,15 +103,15 @@ SE.T.:w
:"
:" x/bar/voyager.txt
:" y/bar/voyager.txt
:
silent !
mkdir
foo
:
call
mkdir
('
foo
')
:cd foo
:
silent !mkdir x
:
silent !mkdir y
:
call mkdir('x')
:
call mkdir('y')
:cd x
:
silent !
mkdir
bar
:
call
mkdir
('
bar
')
:cd ..
:cd y
:
silent !
mkdir
bar
:
call
mkdir
('
bar
')
:cd ..
:cd ..
:" We should now be in the Xfind directory
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment