dsound/tests: Clarify some skip() traces.
This commit is contained in:
parent
eabbe5ab58
commit
ed7faad1ed
|
@ -742,14 +742,14 @@ START_TEST(capture)
|
|||
|
||||
hDsound = LoadLibrary("dsound.dll");
|
||||
if (!hDsound) {
|
||||
skip("dsound.dll not found!\n");
|
||||
skip("dsound.dll not found - skipping all tests\n");
|
||||
return;
|
||||
}
|
||||
|
||||
pDirectSoundCaptureCreate = (void*)GetProcAddress(hDsound, "DirectSoundCaptureCreate");
|
||||
pDirectSoundCaptureEnumerateA = (void*)GetProcAddress(hDsound, "DirectSoundCaptureEnumerateA");
|
||||
if (!pDirectSoundCaptureCreate || !pDirectSoundCaptureEnumerateA) {
|
||||
skip("capture test skipped\n");
|
||||
skip("DirectSoundCapture{Create,Enumerate} missing - skipping all tests\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -1331,7 +1331,7 @@ START_TEST(ds3d)
|
|||
FreeLibrary(hDsound);
|
||||
}
|
||||
else
|
||||
skip("dsound.dll not found!\n");
|
||||
skip("dsound.dll not found - skipping all tests\n");
|
||||
|
||||
CoUninitialize();
|
||||
}
|
||||
|
|
|
@ -1151,12 +1151,12 @@ START_TEST(ds3d8)
|
|||
if (pDirectSoundCreate8)
|
||||
ds3d8_tests();
|
||||
else
|
||||
skip("ds3d8 test skipped\n");
|
||||
skip("DirectSoundCreate8 missing - skipping all tests\n");
|
||||
|
||||
FreeLibrary(hDsound);
|
||||
}
|
||||
else
|
||||
skip("dsound.dll not found!\n");
|
||||
skip("dsound.dll not found - skipping all tests\n");
|
||||
|
||||
CoUninitialize();
|
||||
}
|
||||
|
|
|
@ -1605,7 +1605,7 @@ START_TEST(dsound)
|
|||
FreeLibrary(hDsound);
|
||||
}
|
||||
else
|
||||
win_skip("dsound.dll not found!\n");
|
||||
win_skip("dsound.dll not found - skipping all tests\n");
|
||||
|
||||
CoUninitialize();
|
||||
}
|
||||
|
|
|
@ -1189,12 +1189,12 @@ START_TEST(dsound8)
|
|||
test_first_device();
|
||||
}
|
||||
else
|
||||
skip("dsound8 test skipped\n");
|
||||
skip("DirectSoundCreate8 missing - skipping all tests\n");
|
||||
|
||||
FreeLibrary(hDsound);
|
||||
}
|
||||
else
|
||||
skip("dsound.dll not found!\n");
|
||||
skip("dsound.dll not found - skipping all tests\n");
|
||||
|
||||
CoUninitialize();
|
||||
}
|
||||
|
|
|
@ -238,12 +238,12 @@ START_TEST(duplex)
|
|||
if (pDirectSoundFullDuplexCreate)
|
||||
IDirectSoundFullDuplex_tests();
|
||||
else
|
||||
skip("duplex test skipped\n");
|
||||
skip("DirectSoundFullDuplexCreate missing - skipping all tests\n");
|
||||
|
||||
FreeLibrary(hDsound);
|
||||
}
|
||||
else
|
||||
skip("dsound.dll not found!\n");
|
||||
skip("dsound.dll not found - skipping all tests\n");
|
||||
|
||||
CoUninitialize();
|
||||
}
|
||||
|
|
|
@ -743,7 +743,7 @@ START_TEST(propset)
|
|||
FreeLibrary(hDsound);
|
||||
}
|
||||
else
|
||||
skip("dsound.dll not found!\n");
|
||||
skip("dsound.dll not found - skipping all tests\n");
|
||||
|
||||
CoUninitialize();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue