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
fc4b2f6c
Commit
fc4b2f6c
authored
Aug 03, 2012
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Aug 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr/tests: Handle result from the AppV virtual drive.
parent
9aacf4ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
mpr.c
dlls/mpr/tests/mpr.c
+8
-2
No files found.
dlls/mpr/tests/mpr.c
View file @
fc4b2f6c
...
...
@@ -42,7 +42,11 @@ static void test_WNetGetUniversalName(void)
if
(
drive_type
==
DRIVE_REMOTE
)
ok
(
ret
==
WN_NO_ERROR
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
else
ok
(
ret
==
ERROR_NOT_CONNECTED
,
"WNetGetUniversalNameA gave wrong error: %08x
\n
"
,
ret
);
/* WN_NO_NET_OR_BAD_PATH (DRIVE_FIXED) returned from the virtual drive (usual Q:)
created by the microsoft application virtualization client */
ok
((
ret
==
WN_NOT_CONNECTED
)
||
(
ret
==
WN_NO_NET_OR_BAD_PATH
),
"WNetGetUniversalNameA(%s, ...) returned %u (drive_type: %u)
\n
"
,
driveA
,
ret
,
drive_type
);
ok
(
info_size
==
sizeof
(
buffer
),
"Got wrong size: %u
\n
"
,
info_size
);
...
...
@@ -53,7 +57,9 @@ static void test_WNetGetUniversalName(void)
if
(
drive_type
==
DRIVE_REMOTE
)
ok
(
ret
==
WN_NO_ERROR
,
"WNetGetUniversalNameW failed: %08x
\n
"
,
ret
);
else
ok
(
ret
==
ERROR_NOT_CONNECTED
,
"WNetGetUniversalNameW gave wrong error: %08x
\n
"
,
ret
);
ok
((
ret
==
WN_NOT_CONNECTED
)
||
(
ret
==
WN_NO_NET_OR_BAD_PATH
),
"WNetGetUniversalNameW(%s, ...) returned %u (drive_type: %u)
\n
"
,
wine_dbgstr_w
(
driveW
),
ret
,
drive_type
);
ok
(
info_size
==
sizeof
(
buffer
),
"Got wrong size: %u
\n
"
,
info_size
);
}
...
...
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