Commit 48374cf6 authored by Ivan Leo's avatar Ivan Leo Committed by Alexandre Julliard

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

parent b0c7bee2
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment