shell32/tests: Skip a test on Vista.
This commit is contained in:
parent
189ea312d7
commit
30bb78f0f9
@ -601,20 +601,33 @@ static void test_delete(void)
|
|||||||
ok(file_exists("test1.txt"), "Expected test1.txt to exist\n");
|
ok(file_exists("test1.txt"), "Expected test1.txt to exist\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* delete a nonexistent file */
|
||||||
|
shfo.pFrom = "nonexistent.txt\0";
|
||||||
|
shfo.wFunc = FO_DELETE;
|
||||||
|
ret = SHFileOperation(&shfo);
|
||||||
|
todo_wine
|
||||||
|
ok(ret == 1026 ||
|
||||||
|
ret == ERROR_FILE_NOT_FOUND || /* Vista */
|
||||||
|
broken(ret == ERROR_SUCCESS), /* NT4 */
|
||||||
|
"Expected 1026 or ERROR_FILE_NOT_FOUND, got %d\n", ret);
|
||||||
|
|
||||||
/* delete a dir, and then a file inside the dir, same as
|
/* delete a dir, and then a file inside the dir, same as
|
||||||
* deleting a nonexistent file
|
* deleting a nonexistent file
|
||||||
*
|
|
||||||
* FIXME: Vista throws up a dialog window to ask if one.txt should be created
|
|
||||||
*/
|
*/
|
||||||
|
if (ret != ERROR_FILE_NOT_FOUND)
|
||||||
|
{
|
||||||
|
/* Vista would throw up a dialog box that we can't suppress */
|
||||||
init_shfo_tests();
|
init_shfo_tests();
|
||||||
shfo.pFrom = "testdir2\0testdir2\\one.txt\0";
|
shfo.pFrom = "testdir2\0testdir2\\one.txt\0";
|
||||||
shfo.wFunc = FO_DELETE;
|
|
||||||
ret = SHFileOperation(&shfo);
|
ret = SHFileOperation(&shfo);
|
||||||
ok(ret == ERROR_PATH_NOT_FOUND ||
|
ok(ret == ERROR_PATH_NOT_FOUND ||
|
||||||
broken(ret == ERROR_SUCCESS), /* NT4 */
|
broken(ret == ERROR_SUCCESS), /* NT4 */
|
||||||
"Expected ERROR_PATH_NOT_FOUND, got %d\n", ret);
|
"Expected ERROR_PATH_NOT_FOUND, got %d\n", ret);
|
||||||
ok(!dir_exists("testdir2"), "Expected testdir2 to not exist\n");
|
ok(!dir_exists("testdir2"), "Expected testdir2 to not exist\n");
|
||||||
ok(!file_exists("testdir2\\one.txt"), "Expected testdir2\\one.txt to not exist\n");
|
ok(!file_exists("testdir2\\one.txt"), "Expected testdir2\\one.txt to not exist\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
skip("Test would show a dialog box\n");
|
||||||
|
|
||||||
/* try the FOF_NORECURSION flag, continues deleting subdirs */
|
/* try the FOF_NORECURSION flag, continues deleting subdirs */
|
||||||
init_shfo_tests();
|
init_shfo_tests();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user