Milestone 5: deliver embedded RDP sessions and lifecycle hardening
This commit is contained in:
47
third_party/FreeRDP/winpr/libwinpr/utils/test/TestVersion.c
vendored
Normal file
47
third_party/FreeRDP/winpr/libwinpr/utils/test/TestVersion.c
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
|
||||
#include <winpr/crt.h>
|
||||
|
||||
#include <winpr/version.h>
|
||||
#include <winpr/winpr.h>
|
||||
|
||||
int TestVersion(int argc, char* argv[])
|
||||
{
|
||||
const char* version = nullptr;
|
||||
const char* git = nullptr;
|
||||
const char* build = nullptr;
|
||||
int major = 0;
|
||||
int minor = 0;
|
||||
int revision = 0;
|
||||
WINPR_UNUSED(argc);
|
||||
WINPR_UNUSED(argv);
|
||||
winpr_get_version(&major, &minor, &revision);
|
||||
|
||||
if (major != WINPR_VERSION_MAJOR)
|
||||
return -1;
|
||||
|
||||
if (minor != WINPR_VERSION_MINOR)
|
||||
return -1;
|
||||
|
||||
if (revision != WINPR_VERSION_REVISION)
|
||||
return -1;
|
||||
|
||||
version = winpr_get_version_string();
|
||||
|
||||
if (!version)
|
||||
return -1;
|
||||
|
||||
git = winpr_get_build_revision();
|
||||
|
||||
if (!git)
|
||||
return -1;
|
||||
|
||||
if (strncmp(git, WINPR_GIT_REVISION, sizeof(WINPR_GIT_REVISION)) != 0)
|
||||
return -1;
|
||||
|
||||
build = winpr_get_build_config();
|
||||
|
||||
if (!build)
|
||||
return -1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user