Author: tkreuzer
Date: Mon Apr 19 21:43:18 2010
New Revision: 46947
URL:
http://svn.reactos.org/svn/reactos?rev=46947&view=rev
Log:
[NTDLL_WINETEST]
- Skip broken tests
Modified:
trunk/rostests/winetests/ntdll/file.c
Modified: trunk/rostests/winetests/ntdll/file.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/ntdll/file.c?re…
==============================================================================
--- trunk/rostests/winetests/ntdll/file.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/ntdll/file.c [iso-8859-1] Mon Apr 19 21:43:18 2010
@@ -1473,7 +1473,8 @@
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 @@
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();
+}