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
d63a160c
Commit
d63a160c
authored
Jun 06, 2013
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Jun 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr/tests: Handle result from the AppV virtual drive.
parent
d22ac28f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
mpr.c
dlls/mpr/tests/mpr.c
+10
-6
No files found.
dlls/mpr/tests/mpr.c
View file @
d63a160c
...
...
@@ -57,7 +57,8 @@ static void test_WNetGetUniversalName(void)
if
(
drive_type
==
DRIVE_REMOTE
)
todo_wine
ok
(
ret
==
WN_BAD_VALUE
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
else
ok
(
ret
==
ERROR_NOT_CONNECTED
,
"WNetGetUniversalNameA gave wrong error: %08x
\n
"
,
ret
);
ok
(
ret
==
WN_NOT_CONNECTED
||
ret
==
WN_NO_NET_OR_BAD_PATH
,
"(%s) WNetGetUniversalNameW gave wrong error: %u
\n
"
,
driveA
,
ret
);
fail_size
=
sizeof
(
driveA
)
/
sizeof
(
char
)
-
1
;
ret
=
WNetGetUniversalNameA
(
driveA
,
UNIVERSAL_NAME_INFO_LEVEL
,
...
...
@@ -104,7 +105,8 @@ static void test_WNetGetRemoteName(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
);
ok
(
ret
==
WN_NOT_CONNECTED
||
ret
==
WN_NO_NET_OR_BAD_PATH
,
"(%s) WNetGetUniversalNameA gave wrong error: %u
\n
"
,
driveA
,
ret
);
}
ok
(
info_size
==
sizeof
(
buffer
),
"Got wrong size: %u
\n
"
,
info_size
);
...
...
@@ -115,7 +117,8 @@ static void test_WNetGetRemoteName(void)
if
(
drive_type
==
DRIVE_REMOTE
)
ok
(
ret
==
WN_BAD_VALUE
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
else
ok
(
ret
==
ERROR_NOT_CONNECTED
,
"WNetGetUniversalNameA gave wrong error: %08x
\n
"
,
ret
);
ok
(
ret
==
WN_NOT_CONNECTED
||
ret
==
WN_NO_NET_OR_BAD_PATH
,
"(%s) WNetGetUniversalNameA gave wrong error: %u
\n
"
,
driveA
,
ret
);
}
ret
=
WNetGetUniversalNameA
(
driveA
,
REMOTE_NAME_INFO_LEVEL
,
buffer
,
NULL
);
...
...
@@ -129,8 +132,8 @@ static void test_WNetGetRemoteName(void)
(
drive_type
==
DRIVE_REMOTE
))
ok
(
ret
==
WN_BAD_POINTER
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
else
ok
(
ret
==
ERROR_NOT_CONNECTED
,
"WNetGetUniversalNameA failed: %08x
\n
"
,
ret
);
}
ok
(
ret
==
WN_NOT_CONNECTED
||
ret
==
WN_BAD_VALUE
,
"(%s) WNetGetUniversalNameA gave wrong error: %u
\n
"
,
driveA
,
ret
);
}
fail_size
=
sizeof
(
driveA
)
/
sizeof
(
char
)
-
1
;
ret
=
WNetGetUniversalNameA
(
driveA
,
REMOTE_NAME_INFO_LEVEL
,
...
...
@@ -150,7 +153,8 @@ static void test_WNetGetRemoteName(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
,
"(%s) WNetGetUniversalNameW gave wrong error: %u
\n
"
,
driveA
,
ret
);
}
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