Commit 369543e3 authored by Lauri Kenttä's avatar Lauri Kenttä Committed by Alexandre Julliard

kernel32/tests: Mask out FILE_ATTRIBUTE_COMPRESSED to prevent failures.

parent 15840d96
...@@ -457,6 +457,7 @@ static void test__lcreat( void ) ...@@ -457,6 +457,7 @@ static void test__lcreat( void )
ok (!strcmp (filename, search_results.cFileName), ok (!strcmp (filename, search_results.cFileName),
"found unexpected name \"%s\"\n", search_results.cFileName); "found unexpected name \"%s\"\n", search_results.cFileName);
search_results.dwFileAttributes &= ~FILE_ATTRIBUTE_NOT_CONTENT_INDEXED; search_results.dwFileAttributes &= ~FILE_ATTRIBUTE_NOT_CONTENT_INDEXED;
search_results.dwFileAttributes &= ~FILE_ATTRIBUTE_COMPRESSED;
ok (FILE_ATTRIBUTE_ARCHIVE==search_results.dwFileAttributes, ok (FILE_ATTRIBUTE_ARCHIVE==search_results.dwFileAttributes,
"attributes of file \"%s\" are 0x%04x\n", search_results.cFileName, "attributes of file \"%s\" are 0x%04x\n", search_results.cFileName,
search_results.dwFileAttributes); search_results.dwFileAttributes);
......
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