advapi32/tests: Don't crash the service test on wow64 Wine.
Signed-off-by: André Hentschel <nerv@dawncrow.de> Signed-off-by: Sebastian Lackner <sebastian@fds-team.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
82856af5fa
commit
49f2d424ac
|
@ -1401,7 +1401,7 @@ static void test_enum_svc(void)
|
||||||
|
|
||||||
/* lpServiceName and lpDisplayName should always be filled */
|
/* lpServiceName and lpDisplayName should always be filled */
|
||||||
ok(services[i].lpServiceName[0], "Expected a service name\n");
|
ok(services[i].lpServiceName[0], "Expected a service name\n");
|
||||||
ok(services[i].lpDisplayName[0], "Expected a display name\n");
|
ok(services[i].lpDisplayName && services[i].lpDisplayName[0], "Expected a display name\n");
|
||||||
|
|
||||||
/* Decrement the counters to see if the functions calls return the same
|
/* Decrement the counters to see if the functions calls return the same
|
||||||
* numbers as the contents of these structures.
|
* numbers as the contents of these structures.
|
||||||
|
@ -1704,7 +1704,7 @@ static void test_enum_svc(void)
|
||||||
|
|
||||||
/* lpServiceName and lpDisplayName should always be filled */
|
/* lpServiceName and lpDisplayName should always be filled */
|
||||||
ok(exservices[i].lpServiceName[0], "Expected a service name\n");
|
ok(exservices[i].lpServiceName[0], "Expected a service name\n");
|
||||||
ok(exservices[i].lpDisplayName[0], "Expected a display name\n");
|
ok(exservices[i].lpDisplayName && exservices[i].lpDisplayName[0], "Expected a display name\n");
|
||||||
|
|
||||||
/* Decrement the counters to see if the functions calls return the
|
/* Decrement the counters to see if the functions calls return the
|
||||||
* same numbers as the contents of these structures.
|
* same numbers as the contents of these structures.
|
||||||
|
|
Loading…
Reference in New Issue