Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6fc50ff3
Commit
6fc50ff3
authored
Jun 07, 2006
by
Phil Lodwick
Committed by
Alexandre Julliard
Jun 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Test to make sure we can create a non-nested directory.
parent
5a13cba8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
shlfileop.c
dlls/shell32/tests/shlfileop.c
+4
-0
No files found.
dlls/shell32/tests/shlfileop.c
View file @
6fc50ff3
...
...
@@ -103,6 +103,7 @@ static void clean_after_shfo_tests(void)
RemoveDirectoryA
(
"testdir2
\\
test4.txt"
);
RemoveDirectoryA
(
"testdir2
\\
nested"
);
RemoveDirectoryA
(
"testdir2"
);
RemoveDirectoryA
(
"c:
\\
testdir3"
);
DeleteFileA
(
"nonexistent
\\
notreal
\\
test2.txt"
);
RemoveDirectoryA
(
"nonexistent
\\
notreal"
);
RemoveDirectoryA
(
"nonexistent"
);
...
...
@@ -839,6 +840,9 @@ static void test_sh_create_dir(void)
ret
=
pSHCreateDirectoryExA
(
NULL
,
path
,
NULL
);
ok
(
ERROR_ALREADY_EXISTS
==
ret
,
"SHCreateDirectoryEx should fail to create existing directory, ret = %d
\n
"
,
ret
);
ret
=
pSHCreateDirectoryExA
(
NULL
,
"c:
\\
testdir3"
,
NULL
);
ok
(
file_exists
(
"c:
\\
testdir3"
),
"The directory is not created
\n
"
);
}
START_TEST
(
shlfileop
)
...
...
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