rasapi32: Skip RasEnumDevicesA tests on configuration problems.

oldstable
Stefan Leichter 2008-07-26 10:30:22 +02:00 committed by Alexandre Julliard
parent cc494c48af
commit 548abf369d
2 changed files with 6 additions and 1 deletions

View File

@ -55,7 +55,11 @@ static void test_rasenum(void)
/* create the return buffer */
result = pRasEnumDevicesA(NULL, &bufsize, &cDevices);
trace("RasEnumDevicesA: buffersize %d\n", cb);
if(ERROR_RASMAN_CANNOT_INITIALIZE == result) {
win_skip("RAS configuration problem\n");
return;
}
trace("RasEnumDevicesA: returned %d buffersize %d\n", result, cb);
ok(result == ERROR_BUFFER_TOO_SMALL,
"Expected ERROR_BUFFER_TOO_SMALL, got %08d\n", result);

View File

@ -22,5 +22,6 @@
#define RASBASE 600
#define ERROR_BUFFER_TOO_SMALL (RASBASE+3)
#define ERROR_INVALID_SIZE (RASBASE+32)
#define ERROR_RASMAN_CANNOT_INITIALIZE (RASBASE+111)
#endif