Commit e5779901 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

shell32/tests: Fix a test failure on Win9x.

parent 4eec1ad4
...@@ -650,9 +650,12 @@ static void test_rename(void) ...@@ -650,9 +650,12 @@ static void test_rename(void)
shfo.pFrom = "test1.txt\0test2.txt\0"; shfo.pFrom = "test1.txt\0test2.txt\0";
shfo.pTo = "a.txt\0"; shfo.pTo = "a.txt\0";
retval = SHFileOperationA(&shfo); retval = SHFileOperationA(&shfo);
ok(retval == ERROR_GEN_FAILURE, "Expected ERROR_GEN_FAILURE, got %d\n", retval); ok(retval == ERROR_GEN_FAILURE ||
broken(!retval), /* Win9x */
"Expected ERROR_GEN_FAILURE, got %d\n", retval);
ok(file_exists("test1.txt"), "Expected test1.txt to exist\n"); ok(file_exists("test1.txt"), "Expected test1.txt to exist\n");
ok(file_exists("test2.txt"), "Expected test2.txt to exist\n"); ok(file_exists("test2.txt"), "Expected test2.txt to exist\n");
ok(!file_exists("a.txt"), "Expected a.txt to not exist\n");
/* pFrom doesn't exist */ /* pFrom doesn't exist */
shfo.pFrom = "idontexist\0"; shfo.pFrom = "idontexist\0";
......
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