Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4ca754d9
Commit
4ca754d9
authored
Mar 11, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Fix/change tests for systems with no ServicePack.
parent
da03fc55
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
12 deletions
+32
-12
version.c
dlls/kernel32/tests/version.c
+32
-12
No files found.
dlls/kernel32/tests/version.c
View file @
4ca754d9
...
...
@@ -101,6 +101,7 @@ static void test_VerifyVersionInfo(void)
{
OSVERSIONINFOEX
info
=
{
sizeof
(
info
)
};
BOOL
ret
;
DWORD
servicepack
;
if
(
!
pVerifyVersionInfoA
||
!
pVerSetConditionMask
)
{
...
...
@@ -108,6 +109,14 @@ static void test_VerifyVersionInfo(void)
return
;
}
/* Before we start doing some tests we should check what the version of
* the ServicePack is. Tests on a box with no ServicePack will fail otherwise.
*/
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
servicepack
=
info
.
wServicePackMajor
;
memset
(
&
info
,
0
,
sizeof
(
info
));
info
.
dwOSVersionInfoSize
=
sizeof
(
info
);
ret
=
pVerifyVersionInfoA
(
&
info
,
VER_MAJORVERSION
|
VER_MINORVERSION
,
pVerSetConditionMask
(
0
,
VER_MAJORVERSION
,
VER_GREATER_EQUAL
));
ok
(
ret
,
"VerifyVersionInfoA failed with error %d
\n
"
,
GetLastError
());
...
...
@@ -152,7 +161,11 @@ static void test_VerifyVersionInfo(void)
ret
=
pVerifyVersionInfoA
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
pVerSetConditionMask
(
pVerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
),
VER_MAJORVERSION
,
VER_GREATER_EQUAL
));
ok
(
ret
,
"VerifyVersionInfoA failed with error %d
\n
"
,
GetLastError
());
if
(
servicepack
==
0
)
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfoA should have failed with ERROR_OLD_WIN_VERSION instead of %d
\n
"
,
GetLastError
());
else
ok
(
ret
,
"VerifyVersionInfoA failed with error %d
\n
"
,
GetLastError
());
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
wServicePackMinor
++
;
...
...
@@ -161,17 +174,24 @@ static void test_VerifyVersionInfo(void)
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfoA should have failed with ERROR_OLD_WIN_VERSION instead of %d
\n
"
,
GetLastError
());
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
wServicePackMajor
--
;
ret
=
pVerifyVersionInfoA
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
pVerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER
));
ok
(
ret
,
"VerifyVersionInfoA failed with error %d
\n
"
,
GetLastError
());
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
wServicePackMajor
--
;
ret
=
pVerifyVersionInfoA
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
pVerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
ok
(
ret
,
"VerifyVersionInfoA failed with error %d
\n
"
,
GetLastError
());
if
(
servicepack
==
0
)
{
skip
(
"There is no ServicePack on this system
\n
"
);
}
else
{
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
wServicePackMajor
--
;
ret
=
pVerifyVersionInfoA
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
pVerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER
));
ok
(
ret
,
"VerifyVersionInfoA failed with error %d
\n
"
,
GetLastError
());
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
wServicePackMajor
--
;
ret
=
pVerifyVersionInfoA
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
pVerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
ok
(
ret
,
"VerifyVersionInfoA failed with error %d
\n
"
,
GetLastError
());
}
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
wServicePackMajor
++
;
...
...
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