kernel32/tests/drive: remove win9x hacks

Austin English austinenglish at gmail.com
Tue Jul 26 20:30:35 CDT 2011


-- 
-Austin
-------------- next part --------------
diff --git a/dlls/kernel32/tests/drive.c b/dlls/kernel32/tests/drive.c
index e4cb26c..db9c9c4 100644
--- a/dlls/kernel32/tests/drive.c
+++ b/dlls/kernel32/tests/drive.c
@@ -63,11 +63,6 @@ static void test_GetDriveTypeW(void)
     for (drive[0] = 'A'; drive[0] <= 'Z'; drive[0]++)
     {
         type = GetDriveTypeW(drive);
-        if (type == DRIVE_UNKNOWN && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
-        {
-            win_skip("GetDriveTypeW is not available on Win9x\n");
-            return;
-        }
         ok(type > DRIVE_UNKNOWN && type <= DRIVE_RAMDISK,
            "not a valid drive %c: type %u\n", drive[0], type);
 


More information about the wine-patches mailing list