mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
ntdll/tests: Re-add workaround for check that is still broken on win7.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53679
This commit is contained in:
parent
e79b129064
commit
93250eb56e
1 changed files with 2 additions and 1 deletions
|
@ -271,7 +271,8 @@ static UINT_PTR check_string_( int line, RTL_USER_PROCESS_PARAMETERS *params, UN
|
||||||
return pos;
|
return pos;
|
||||||
}
|
}
|
||||||
if (expect)
|
if (expect)
|
||||||
ok_(__FILE__,line)( (UINT_PTR)str->Buffer == align(pos, sizeof(void *)),
|
ok_(__FILE__,line)( (UINT_PTR)str->Buffer == align(pos, sizeof(void *)) ||
|
||||||
|
broken( (UINT_PTR)str->Buffer == align(pos, 4) ), /* win7 */
|
||||||
"wrong buffer %Ix/%Ix\n", (UINT_PTR)str->Buffer, pos );
|
"wrong buffer %Ix/%Ix\n", (UINT_PTR)str->Buffer, pos );
|
||||||
else /* initial params are not aligned */
|
else /* initial params are not aligned */
|
||||||
ok_(__FILE__,line)( (UINT_PTR)str->Buffer == pos,
|
ok_(__FILE__,line)( (UINT_PTR)str->Buffer == pos,
|
||||||
|
|
Loading…
Reference in a new issue