mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[HLINK_WINETEST] Sync with Wine Staging 2.2. CORE-12823
svn path=/trunk/; revision=73947
This commit is contained in:
parent
4634a076c4
commit
3dcc353592
1 changed files with 8 additions and 0 deletions
|
@ -400,6 +400,14 @@ static void test_persist_save_data(const char *testname, IHlink *lnk,
|
||||||
same = TRUE;
|
same = TRUE;
|
||||||
for (i = 0; i < min(data_size, expected_data_alt_size); i++)
|
for (i = 0; i < min(data_size, expected_data_alt_size); i++)
|
||||||
{
|
{
|
||||||
|
if ((expected_data_alt == expected_hlink_data_ie7 && i == 89) /* Win10 */ ||
|
||||||
|
(expected_data_alt == expected_hlink_data2_ie7 && i == 109) /* Win10 */ ||
|
||||||
|
(expected_data_alt == expected_hlink_data3_ie7 && i == 109) /* Win10 */ ||
|
||||||
|
(expected_data_alt == expected_hlink_data5_ie7 && i == 107) /* Win10 */)
|
||||||
|
{
|
||||||
|
ok(data[i] == 0 || broken(data[i] == 1), "Expected 0 or 1, got %d\n", data[i]);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if ((expected_data_alt[i] != data[i]) &&
|
if ((expected_data_alt[i] != data[i]) &&
|
||||||
(((expected_data_alt != expected_hlink_data2) &&
|
(((expected_data_alt != expected_hlink_data2) &&
|
||||||
(expected_data_alt != expected_hlink_data3)) ||
|
(expected_data_alt != expected_hlink_data3)) ||
|
||||||
|
|
Loading…
Reference in a new issue