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
3fa7fa5b
Commit
3fa7fa5b
authored
Jun 14, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel: Add some tests for VerifyVersionInfo.
parent
f2dc25a5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
131 additions
and
0 deletions
+131
-0
.gitignore
dlls/kernel/tests/.gitignore
+1
-0
Makefile.in
dlls/kernel/tests/Makefile.in
+1
-0
version.c
dlls/kernel/tests/version.c
+129
-0
No files found.
dlls/kernel/tests/.gitignore
View file @
3fa7fa5b
...
@@ -25,5 +25,6 @@ thread.ok
...
@@ -25,5 +25,6 @@ thread.ok
time.ok
time.ok
timer.ok
timer.ok
toolhelp.ok
toolhelp.ok
version.ok
virtual.ok
virtual.ok
volume.ok
volume.ok
dlls/kernel/tests/Makefile.in
View file @
3fa7fa5b
...
@@ -31,6 +31,7 @@ CTESTS = \
...
@@ -31,6 +31,7 @@ CTESTS = \
time.c
\
time.c
\
timer.c
\
timer.c
\
toolhelp.c
\
toolhelp.c
\
version.c
\
virtual.c
\
virtual.c
\
volume.c
volume.c
...
...
dlls/kernel/tests/version.c
0 → 100644
View file @
3fa7fa5b
/*
* Unit test suite for version functions
*
* Copyright 2006 Robert Shearman
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wine/test.h"
#include "winbase.h"
START_TEST
(
version
)
{
OSVERSIONINFOEX
info
=
{
sizeof
(
info
)
};
BOOL
ret
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MAJORVERSION
|
VER_MINORVERSION
,
VerSetConditionMask
(
0
,
VER_MAJORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
ret
,
"VerifyVersionInfo failed with error %ld
\n
"
,
GetLastError
());
ret
=
VerifyVersionInfo
(
&
info
,
VER_BUILDNUMBER
|
VER_MAJORVERSION
|
VER_MINORVERSION
/* | VER_PLATFORMID | VER_SERVICEPACKMAJOR |
VER_SERVICEPACKMINOR | VER_SUITENAME | VER_PRODUCT_TYPE */
,
VerSetConditionMask
(
0
,
VER_MAJORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfo should have failed with ERROR_OLD_WIN_VERSION instead of %ld
\n
"
,
GetLastError
());
/* tests special handling of VER_SUITENAME */
ret
=
VerifyVersionInfo
(
&
info
,
VER_SUITENAME
,
VerSetConditionMask
(
0
,
VER_SUITENAME
,
VER_AND
));
ok
(
ret
,
"VerifyVersionInfo failed with error %ld
\n
"
,
GetLastError
());
ret
=
VerifyVersionInfo
(
&
info
,
VER_SUITENAME
,
VerSetConditionMask
(
0
,
VER_SUITENAME
,
VER_OR
));
ok
(
ret
,
"VerifyVersionInfo failed with error %ld
\n
"
,
GetLastError
());
/* test handling of version numbers */
/* v3.10 is always less than v4.x even
* if the minor version is tested */
info
.
dwMajorVersion
=
3
;
info
.
dwMinorVersion
=
10
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MAJORVERSION
|
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
),
VER_MAJORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
ret
,
"VerifyVersionInfo failed with error %ld
\n
"
,
GetLastError
());
info
.
dwMinorVersion
=
0
;
info
.
wServicePackMajor
=
10
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MAJORVERSION
|
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
),
VER_MAJORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
ret
,
"VerifyVersionInfo failed with error %ld
\n
"
,
GetLastError
());
info
.
wServicePackMajor
=
0
;
info
.
wServicePackMinor
=
10
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
),
VER_MAJORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
ret
,
"VerifyVersionInfo failed with error %ld
\n
"
,
GetLastError
());
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
wServicePackMinor
++
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfo should have failed with ERROR_OLD_WIN_VERSION instead of %ld
\n
"
,
GetLastError
());
/* test the failure hierarchy for the four version fields */
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
wServicePackMajor
++
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfo should have failed with ERROR_OLD_WIN_VERSION instead of %ld
\n
"
,
GetLastError
());
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
dwMinorVersion
++
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfo should have failed with ERROR_OLD_WIN_VERSION instead of %ld
\n
"
,
GetLastError
());
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
dwMajorVersion
++
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MAJORVERSION
|
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfo should have failed with ERROR_OLD_WIN_VERSION instead of %ld
\n
"
,
GetLastError
());
ret
=
VerifyVersionInfo
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
ret
,
"VerifyVersionInfo failed with error %ld
\n
"
,
GetLastError
());
/* shows that build number fits into the hierarchy after major version, but before minor version */
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
dwBuildNumber
++
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MAJORVERSION
|
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfo should have failed with ERROR_OLD_WIN_VERSION instead of %ld
\n
"
,
GetLastError
());
ret
=
VerifyVersionInfo
(
&
info
,
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
ret
,
"VerifyVersionInfo failed with error %ld
\n
"
,
GetLastError
());
/* test bad dwOSVersionInfoSize */
GetVersionEx
((
OSVERSIONINFO
*
)
&
info
);
info
.
dwOSVersionInfoSize
=
0
;
ret
=
VerifyVersionInfo
(
&
info
,
VER_MAJORVERSION
|
VER_MINORVERSION
|
VER_SERVICEPACKMAJOR
|
VER_SERVICEPACKMINOR
,
VerSetConditionMask
(
0
,
VER_MINORVERSION
,
VER_GREATER_EQUAL
));
todo_wine
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_OLD_WIN_VERSION
),
"VerifyVersionInfo should have failed with ERROR_OLD_WIN_VERSION instead of %ld
\n
"
,
GetLastError
());
}
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