From d39e608d4de75fd0ccdd5bb87716d0a38c4edd7a Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 19 Apr 2010 19:43:18 +0000 Subject: [PATCH] [NTDLL_WINETEST] - Skip broken tests svn path=/trunk/; revision=46947 --- rostests/winetests/ntdll/file.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rostests/winetests/ntdll/file.c b/rostests/winetests/ntdll/file.c index 3d28d80342d..32c8d184943 100644 --- a/rostests/winetests/ntdll/file.c +++ b/rostests/winetests/ntdll/file.c @@ -1473,7 +1473,8 @@ START_TEST(file) pNtQueryDirectoryFile = (void *)GetProcAddress(hntdll, "NtQueryDirectoryFile"); create_file_test(); - open_file_test(); + ok(0, "broken test: open_file_test\n"); + //open_file_test(); delete_file_test(); read_file_test(); nt_mailslot_test(); @@ -1482,5 +1483,6 @@ START_TEST(file) test_file_all_information(); test_file_both_information(); test_file_name_information(); - test_file_all_name_information(); + ok(0, "broken test: test_file_all_name_information \n"); + //test_file_all_name_information(); }