Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4981d7fb
Commit
4981d7fb
authored
Oct 21, 2017
by
André Hentschel
Committed by
Alexandre Julliard
Oct 23, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr/tests: Allow values from Win8+.
Signed-off-by:
André Hentschel
<
nerv@dawncrow.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
aef2f079
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mpr.c
dlls/mpr/tests/mpr.c
+3
-3
No files found.
dlls/mpr/tests/mpr.c
View file @
4981d7fb
...
...
@@ -55,7 +55,7 @@ static void test_WNetGetUniversalName(void)
ret
=
WNetGetUniversalNameA
(
driveA
,
UNIVERSAL_NAME_INFO_LEVEL
,
buffer
,
&
fail_size
);
if
(
drive_type
==
DRIVE_REMOTE
)
todo_wine
ok
(
ret
==
WN_BAD_VALUE
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
todo_wine
ok
(
ret
==
WN_BAD_VALUE
||
ret
==
WN_MORE_DATA
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
else
ok
(
ret
==
WN_NOT_CONNECTED
||
ret
==
WN_NO_NET_OR_BAD_PATH
,
"(%s) WNetGetUniversalNameW gave wrong error: %u
\n
"
,
driveA
,
ret
);
...
...
@@ -115,7 +115,7 @@ static void test_WNetGetRemoteName(void)
buffer
,
&
fail_size
);
todo_wine
{
if
(
drive_type
==
DRIVE_REMOTE
)
ok
(
ret
==
WN_BAD_VALUE
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
ok
(
ret
==
WN_BAD_VALUE
||
ret
==
WN_MORE_DATA
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
else
ok
(
ret
==
WN_NOT_CONNECTED
||
ret
==
WN_NO_NET_OR_BAD_PATH
,
"(%s) WNetGetUniversalNameA gave wrong error: %u
\n
"
,
driveA
,
ret
);
...
...
@@ -129,7 +129,7 @@ static void test_WNetGetRemoteName(void)
todo_wine
{
if
(
drive_type
==
DRIVE_REMOTE
)
ok
(
ret
==
WN_BAD_POINTER
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
ok
(
ret
==
WN_BAD_POINTER
||
ret
==
WN_BAD_VALUE
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
else
ok
(
ret
==
WN_NOT_CONNECTED
||
ret
==
WN_BAD_VALUE
,
"(%s) WNetGetUniversalNameA gave wrong error: %u
\n
"
,
driveA
,
ret
);
...
...
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