shell32/tests: Comment out a test that crashes on windows nt 4.0.

This commit is contained in:
Ivan Leo 2006-06-29 19:51:49 +01:00 committed by Alexandre Julliard
parent b0c7bee2ef
commit 48374cf630
1 changed files with 4 additions and 2 deletions

View File

@ -343,10 +343,12 @@ static void test_rename(void)
retval = SHFileOperationA(&shfo);
ok(retval == ERROR_ACCESS_DENIED, "Expected ERROR_ACCESS_DENIED, got %ld\n", retval);
/* pFrom is NULL */
/* pFrom is NULL, commented out because it crashes on nt 4.0 */
#if 0
shfo.pFrom = NULL;
retval = SHFileOperationA(&shfo);
ok(retval == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %ld\n", retval);
ok(retval == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %ld\n", retval);
#endif
}
/* tests the FO_COPY action */