Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
520054f6
Commit
520054f6
authored
Jan 17, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32/tests: Actually test strings that expand to something bigger than their original size.
parent
c5a95025
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
5 deletions
+16
-5
registry.c
dlls/advapi32/tests/registry.c
+16
-5
No files found.
dlls/advapi32/tests/registry.c
View file @
520054f6
...
@@ -594,6 +594,7 @@ static void test_get_value(void)
...
@@ -594,6 +594,7 @@ static void test_get_value(void)
DWORD
dw
,
qw
[
2
];
DWORD
dw
,
qw
[
2
];
CHAR
buf
[
80
];
CHAR
buf
[
80
];
CHAR
expanded
[]
=
"bar
\\
subdir1"
;
CHAR
expanded
[]
=
"bar
\\
subdir1"
;
CHAR
expanded2
[]
=
"ImARatherLongButIndeedNeededString
\\
subdir1"
;
if
(
!
pRegGetValueA
)
if
(
!
pRegGetValueA
)
{
{
...
@@ -711,11 +712,11 @@ static void test_get_value(void)
...
@@ -711,11 +712,11 @@ static void test_get_value(void)
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ and no buffer (ok, expands) */
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ and no buffer (ok, expands) */
size
=
0
;
size
=
0
;
ret
=
pRegGetValueA
(
hkey_main
,
NULL
,
"TP
1
_EXP_SZ"
,
RRF_RT_REG_SZ
,
NULL
,
NULL
,
&
size
);
ret
=
pRegGetValueA
(
hkey_main
,
NULL
,
"TP
2
_EXP_SZ"
,
RRF_RT_REG_SZ
,
NULL
,
NULL
,
&
size
);
ok
(
ret
==
ERROR_SUCCESS
,
"ret=%d
\n
"
,
ret
);
ok
(
ret
==
ERROR_SUCCESS
,
"ret=%d
\n
"
,
ret
);
/* At least v5.2.3790.1830 (2003 SP1) returns the unexpanded sTestpath
1
length + 1 here. */
/* At least v5.2.3790.1830 (2003 SP1) returns the unexpanded sTestpath
2
length + 1 here. */
ok
((
size
==
strlen
(
expanded
)
+
1
)
||
(
size
==
strlen
(
sTestpath1
)
+
1
),
ok
((
size
==
strlen
(
expanded
2
)
+
1
)
||
(
size
==
strlen
(
sTestpath2
)
+
1
),
"strlen(expanded
)=%d, strlen(sTestpath1)=%d, size=%d
\n
"
,
lstrlenA
(
expanded
),
lstrlenA
(
sTestpath1
),
size
);
"strlen(expanded
2)=%d, strlen(sTestpath2)=%d, size=%d
\n
"
,
lstrlenA
(
expanded2
),
lstrlenA
(
sTestpath2
),
size
);
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ (ok, expands) */
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ (ok, expands) */
buf
[
0
]
=
0
;
type
=
0xdeadbeef
;
size
=
sizeof
(
buf
);
buf
[
0
]
=
0
;
type
=
0xdeadbeef
;
size
=
sizeof
(
buf
);
...
@@ -726,7 +727,17 @@ static void test_get_value(void)
...
@@ -726,7 +727,17 @@ static void test_get_value(void)
"strlen(expanded)=%d, strlen(sTestpath1)=%d, size=%d
\n
"
,
lstrlenA
(
expanded
),
lstrlenA
(
sTestpath1
),
size
);
"strlen(expanded)=%d, strlen(sTestpath1)=%d, size=%d
\n
"
,
lstrlenA
(
expanded
),
lstrlenA
(
sTestpath1
),
size
);
ok
(
type
==
REG_SZ
,
"type=%d
\n
"
,
type
);
ok
(
type
==
REG_SZ
,
"type=%d
\n
"
,
type
);
ok
(
!
strcmp
(
expanded
,
buf
),
"expanded=
\"
%s
\"
buf=
\"
%s
\"\n
"
,
expanded
,
buf
);
ok
(
!
strcmp
(
expanded
,
buf
),
"expanded=
\"
%s
\"
buf=
\"
%s
\"\n
"
,
expanded
,
buf
);
/* Query REG_EXPAND_SZ using RRF_RT_REG_SZ (ok, expands a lot) */
buf
[
0
]
=
0
;
type
=
0xdeadbeef
;
size
=
sizeof
(
buf
);
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
),
"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
);
/* Query REG_EXPAND_SZ using RRF_RT_REG_EXPAND_SZ|RRF_NOEXPAND (ok, doesn't expand) */
/* Query REG_EXPAND_SZ using RRF_RT_REG_EXPAND_SZ|RRF_NOEXPAND (ok, doesn't expand) */
buf
[
0
]
=
0
;
type
=
0xdeadbeef
;
size
=
sizeof
(
buf
);
buf
[
0
]
=
0
;
type
=
0xdeadbeef
;
size
=
sizeof
(
buf
);
ret
=
pRegGetValueA
(
hkey_main
,
NULL
,
"TP1_EXP_SZ"
,
RRF_RT_REG_EXPAND_SZ
|
RRF_NOEXPAND
,
&
type
,
buf
,
&
size
);
ret
=
pRegGetValueA
(
hkey_main
,
NULL
,
"TP1_EXP_SZ"
,
RRF_RT_REG_EXPAND_SZ
|
RRF_NOEXPAND
,
&
type
,
buf
,
&
size
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment