mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
advapi32/tests: Don't allow Wine to reproduce Windows' bugs.
This commit is contained in:
parent
90d46e3010
commit
15ab77ad8a
@ -775,7 +775,7 @@ static void test_get_value(void)
|
||||
ret = pRegGetValueA(hkey_main, NULL, "TP1_SZ", RRF_RT_REG_SZ, &type, NULL, &size);
|
||||
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
||||
/* v5.2.3790.1830 (2003 SP1) returns sTestpath1 length + 2 here. */
|
||||
ok(size == strlen(sTestpath1)+1 || size == strlen(sTestpath1)+2,
|
||||
ok(size == strlen(sTestpath1)+1 || broken(size == strlen(sTestpath1)+2),
|
||||
"strlen(sTestpath1)=%d size=%d\n", lstrlenA(sTestpath1), size);
|
||||
ok(type == REG_SZ, "type=%d\n", type);
|
||||
|
||||
@ -816,7 +816,7 @@ static void test_get_value(void)
|
||||
ret = pRegGetValueA(hkey_main, NULL, "TP1_EXP_SZ", RRF_RT_REG_SZ, &type, buf, &size);
|
||||
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
||||
/* At least v5.2.3790.1830 (2003 SP1) returns the unexpanded sTestpath1 length + 1 here. */
|
||||
ok((size == strlen(expanded)+1) || (size == strlen(sTestpath1)+1),
|
||||
ok(size == strlen(expanded)+1 || broken(size == strlen(sTestpath1)+1),
|
||||
"strlen(expanded)=%d, strlen(sTestpath1)=%d, size=%d\n", lstrlenA(expanded), lstrlenA(sTestpath1), size);
|
||||
ok(type == REG_SZ, "type=%d\n", type);
|
||||
ok(!strcmp(expanded, buf), "expanded=\"%s\" buf=\"%s\"\n", expanded, buf);
|
||||
@ -826,7 +826,7 @@ static void test_get_value(void)
|
||||
ret = pRegGetValueA(hkey_main, NULL, "TP2_EXP_SZ", RRF_RT_REG_SZ, &type, buf, &size);
|
||||
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
||||
/* At least v5.2.3790.1830 (2003 SP1) returns the unexpanded sTestpath2 length + 1 here. */
|
||||
ok((size == strlen(expanded2)+1) || (size == strlen(sTestpath2)+1),
|
||||
ok(size == strlen(expanded2)+1 || broken(size == strlen(sTestpath2)+1),
|
||||
"strlen(expanded2)=%d, strlen(sTestpath1)=%d, size=%d\n", lstrlenA(expanded2), lstrlenA(sTestpath2), size);
|
||||
ok(type == REG_SZ, "type=%d\n", type);
|
||||
ok(!strcmp(expanded2, buf), "expanded2=\"%s\" buf=\"%s\"\n", expanded2, buf);
|
||||
@ -844,7 +844,7 @@ static void test_get_value(void)
|
||||
ret = pRegGetValueA(hkey_main, NULL, "TP1_EXP_SZ", RRF_RT_REG_EXPAND_SZ|RRF_NOEXPAND, NULL, NULL, &size);
|
||||
ok(ret == ERROR_SUCCESS, "ret=%d\n", ret);
|
||||
/* v5.2.3790.1830 (2003 SP1) returns sTestpath1 length + 2 here. */
|
||||
ok(size == strlen(sTestpath1)+1 || size == strlen(sTestpath1)+2,
|
||||
ok(size == strlen(sTestpath1)+1 || broken(size == strlen(sTestpath1)+2),
|
||||
"strlen(sTestpath1)=%d size=%d\n", lstrlenA(sTestpath1), size);
|
||||
|
||||
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ|RRF_NOEXPAND (type mismatch) */
|
||||
|
Loading…
Reference in New Issue
Block a user