mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 12:23:28 +00:00
[SPOOLSS_WINETEST]
* Sync to Wine 1.5.4. svn path=/trunk/; revision=56630
This commit is contained in:
@@ -62,6 +62,16 @@ static LPCSTR load_functions(void)
|
||||
if (!pSplInitializeWinSpoolDrv) return ptr;
|
||||
|
||||
|
||||
/* Calling BuildOtherNamesFromMachineName or SplInitializeWinSpoolDrv on
|
||||
* Win7 results in a breakpoint exception. If you continue after hitting
|
||||
* the breakpoint, the functions fail with ERROR_NOT_SUPPORTED. So we
|
||||
* just skip the tests on Win7, since they won't provide any useful info.
|
||||
* To detect Win7, we check whether UnloadDriver exists (it doesn't on
|
||||
* Win7, but does exist on earlier Windows versions) */
|
||||
ptr = "UnloadDriver";
|
||||
if (GetProcAddress(hspl, ptr) == NULL) return ptr;
|
||||
|
||||
|
||||
ptr = "winspool.drv";
|
||||
hwinspool = LoadLibraryA(ptr);
|
||||
if (!hwinspool) return ptr;
|
||||
@@ -198,10 +208,10 @@ START_TEST(spoolss)
|
||||
{
|
||||
LPCSTR ptr;
|
||||
|
||||
/* spoolss.dll does not exist on win9x */
|
||||
/* The tests fail on Win7 (see comments in load_function() */
|
||||
ptr = load_functions();
|
||||
if (ptr) {
|
||||
skip("%s not found\n", ptr);
|
||||
win_skip("%s not found\n", ptr);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user