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

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jun 30 14:15:01 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 48374cf630f27d7e35b3ff83503cd6b7c3c85607
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=48374cf630f27d7e35b3ff83503cd6b7c3c85607

Author: Ivan Leo <ivanleo at gmail.com>
Date:   Thu Jun 29 19:51:49 2006 +0100

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

---

 dlls/shell32/tests/shlfileop.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c
index a1180fc..12b2862 100644
--- a/dlls/shell32/tests/shlfileop.c
+++ b/dlls/shell32/tests/shlfileop.c
@@ -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 */




More information about the wine-cvs mailing list