From 990fc66274d68b915df62005ab93792129612fc1 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Sun, 15 Nov 2020 18:28:14 -0600 Subject: [PATCH] msi/tests: Test the "VersionNT" property. Signed-off-by: Zebediah Figura Signed-off-by: Hans Leidekker Signed-off-by: Alexandre Julliard --- dlls/msi/tests/package.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c index f8bf431883b..3b98d9ef111 100644 --- a/dlls/msi/tests/package.c +++ b/dlls/msi/tests/package.c @@ -5735,6 +5735,9 @@ static void test_installprops(void) GetNativeSystemInfo(&si); + sprintf(buf, "%d", LOBYTE(LOWORD(GetVersion())) * 100 + HIBYTE(LOWORD(GetVersion()))); + check_prop(hpkg, "VersionNT", buf, 1); + if (S(U(si)).wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) { sprintf(buf, "%d", si.wProcessorLevel);