Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Olivier F. R. Dierick
wine
Commits
cf826fe0
Commit
cf826fe0
authored
13 years ago
by
Frédéric Delanoy
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
cmd/tests: Add RENAME tests.
parent
73a4deb0
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
programs/cmd/tests/test_builtins.cmd
+31
-1
31 additions, 1 deletion
programs/cmd/tests/test_builtins.cmd
programs/cmd/tests/test_builtins.cmd.exp
+11
-1
11 additions, 1 deletion
programs/cmd/tests/test_builtins.cmd.exp
with
42 additions
and
2 deletions
programs/cmd/tests/test_builtins.cmd
+
31
−
1
View file @
cf826fe0
...
...
@@ -879,7 +879,37 @@ rmdir "foo:"
cd
..
rmdir
"foo bar"
echo
-----------
Testing
mkdir
-----------
echo
------------
Testing
rename
------------
mkdir
foobar
&
cd
foobar
echo
...
ren
and
rename
are
synonymous
...
echo
>
foo
rename
foo
bar
if
exist
foo
echo
foo
should
be
renamed
!
if
exist
bar
echo
foo
renamed
to
bar
ren
bar
foo
if
exist
bar
echo
bar
should
be
renamed
!
if
exist
foo
echo
bar
renamed
to
foo
echo
...
name
collision
...
echo
foo
>
foo
echo
bar
>
bar
ren
foo
bar
2
>
nul
type
foo
type
bar
rem no-op
ren
foo
foo
mkdir
baz
ren
foo
baz
\abc
echo
...
rename
in
other
directory
...
if
not
exist
baz
\abc
(
echo
rename
impossible
in
other
directory
if
exist
foo
echo
original
file
still
present
)
else
(
echo
shouldn
't rename in other directory
!
if not exist foo echo original file not present anymore
)
cd .. & rd /s/q foobar
echo ------------ Testing mkdir ------------
call :setError 0
echo ... md and mkdir are synonymous ...
mkdir foobar
...
...
This diff is collapsed.
Click to expand it.
programs/cmd/tests/test_builtins.cmd.exp
+
11
−
1
View file @
cf826fe0
...
...
@@ -594,7 +594,17 @@ r.test not found after delete, good
del /q * succeeded on file1
del /q * succeeded on file2.dat
------------ Testing del /s --------------
----------- Testing mkdir -----------
------------ Testing rename ------------
... ren and rename are synonymous ...
foo renamed to bar
bar renamed to foo
... name collision ...
foo
bar
... rename in other directory ...
@todo_wine@rename impossible in other directory
@todo_wine@original file still present
------------ Testing mkdir ------------
... md and mkdir are synonymous ...
0
0
...
...
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