Disable test_GetLongPathNameW() in kernel32:path test for now.
[reactos.git] / rostests / winetests / kernel32 / path.c
index be01948..c418ef2 100755 (executable)
@@ -1017,7 +1017,7 @@ static void test_GetLongPathNameA(void)
     /* Test a normal path with a small buffer size */
     memset(temppath, 0, MAX_PATH);
     length = pGetLongPathNameA(tempfile, temppath, 4);
-    /* We have a failure so length should be the minumum plus the terminating '0'  */
+    /* We have a failure so length should be the minimum plus the terminating '0'  */
     ok(length >= lstrlen(tempfile) + 1, "Wrong length\n");
     ok(temppath[0] == 0, "Buffer should not have been touched\n");
 
@@ -1601,7 +1601,8 @@ START_TEST(path)
     test_CleanupPathA(origdir,curdir);
     test_GetTempPath();
     test_GetLongPathNameA();
-    test_GetLongPathNameW();
+    skip("skipping test_GetLongPathNameW(), bug 5370\n");
+    //test_GetLongPathNameW();
     test_GetShortPathNameW();
     test_GetSystemDirectory();
     test_GetWindowsDirectory();