Eric Pouech : ninput/tests: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Wed Mar 2 15:39:49 CST 2022


Module: wine
Branch: master
Commit: a5286b87b8e2bbb97eb3205a04891f3fecbb257b
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a5286b87b8e2bbb97eb3205a04891f3fecbb257b

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Wed Mar  2 09:03:27 2022 +0100

ninput/tests: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ninput/tests/Makefile.in |  1 -
 dlls/ninput/tests/ninput.c    | 48 +++++++++++++++++++++----------------------
 2 files changed, 24 insertions(+), 25 deletions(-)

diff --git a/dlls/ninput/tests/Makefile.in b/dlls/ninput/tests/Makefile.in
index 6ff69c9ba4f..9c0b44fa17d 100644
--- a/dlls/ninput/tests/Makefile.in
+++ b/dlls/ninput/tests/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 TESTDLL = ninput.dll
 IMPORTS = ninput
 
diff --git a/dlls/ninput/tests/ninput.c b/dlls/ninput/tests/ninput.c
index 7fd389378b0..54ea6f0b34b 100644
--- a/dlls/ninput/tests/ninput.c
+++ b/dlls/ninput/tests/ninput.c
@@ -25,14 +25,14 @@ static void test_context(void)
     HRESULT hr;
 
     hr = CreateInteractionContext(&context);
-    ok(hr == S_OK, "Failed to create context, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to create context, hr %#lx.\n", hr);
     hr = DestroyInteractionContext(context);
-    ok(hr == S_OK, "Failed to destroy context, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to destroy context, hr %#lx.\n", hr);
 
     hr = CreateInteractionContext(NULL);
-    ok(hr == E_POINTER, "Got hr %#x.\n", hr);
+    ok(hr == E_POINTER, "Got hr %#lx.\n", hr);
     hr = DestroyInteractionContext(NULL);
-    ok(hr == E_HANDLE, "Got hr %#x.\n", hr);
+    ok(hr == E_HANDLE, "Got hr %#lx.\n", hr);
 }
 
 static void test_properties(void)
@@ -42,44 +42,44 @@ static void test_properties(void)
     HRESULT hr;
 
     hr = CreateInteractionContext(&context);
-    ok(hr == S_OK, "Failed to create context, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to create context, hr %#lx.\n", hr);
 
     hr = GetPropertyInteractionContext(context, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, &value);
-    ok(hr == S_OK, "Failed to get property, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to get property, hr %#lx.\n", hr);
     ok(value == TRUE, "Got unexpected value %#x.\n", value);
 
     hr = SetPropertyInteractionContext(context, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, TRUE);
-    ok(hr == S_OK, "Failed to set property, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to set property, hr %#lx.\n", hr);
     hr = GetPropertyInteractionContext(context, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, &value);
-    ok(hr == S_OK, "Failed to get property, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to get property, hr %#lx.\n", hr);
     ok(value == TRUE, "Got unexpected value %#x.\n", value);
 
     hr = SetPropertyInteractionContext(context, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, FALSE);
-    ok(hr == S_OK, "Failed to set property, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to set property, hr %#lx.\n", hr);
     hr = GetPropertyInteractionContext(context, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, &value);
-    ok(hr == S_OK, "Failed to get property, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to get property, hr %#lx.\n", hr);
     ok(value == FALSE, "Got unexpected value %#x.\n", value);
 
     hr = SetPropertyInteractionContext(context, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, 2);
-    ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
+    ok(hr == E_INVALIDARG, "Got hr %#lx.\n", hr);
     hr = SetPropertyInteractionContext(context, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, 3);
-    ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
+    ok(hr == E_INVALIDARG, "Got hr %#lx.\n", hr);
 
     hr = SetPropertyInteractionContext(context, 0xdeadbeef, 0);
-    ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
+    ok(hr == E_INVALIDARG, "Got hr %#lx.\n", hr);
     hr = GetPropertyInteractionContext(context, 0xdeadbeef, &value);
-    ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
+    ok(hr == E_INVALIDARG, "Got hr %#lx.\n", hr);
 
     hr = GetPropertyInteractionContext(context, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, NULL);
-    ok(hr == E_POINTER, "Got hr %#x.\n", hr);
+    ok(hr == E_POINTER, "Got hr %#lx.\n", hr);
 
     hr = SetPropertyInteractionContext(NULL, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, FALSE);
-    ok(hr == E_HANDLE, "Got hr %#x.\n", hr);
+    ok(hr == E_HANDLE, "Got hr %#lx.\n", hr);
     hr = GetPropertyInteractionContext(NULL, INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS, &value);
-    ok(hr == E_HANDLE, "Got hr %#x.\n", hr);
+    ok(hr == E_HANDLE, "Got hr %#lx.\n", hr);
 
     hr = DestroyInteractionContext(context);
-    ok(hr == S_OK, "Failed to destroy context, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to destroy context, hr %#lx.\n", hr);
 }
 
 static void test_configuration(void)
@@ -101,20 +101,20 @@ static void test_configuration(void)
     };
 
     hr = CreateInteractionContext(&context);
-    ok(hr == S_OK, "Failed to create context, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to create context, hr %#lx.\n", hr);
 
     hr = SetInteractionConfigurationInteractionContext(NULL, 0, NULL);
-    ok(hr == E_HANDLE, "Got hr %#x.\n", hr);
+    ok(hr == E_HANDLE, "Got hr %#lx.\n", hr);
     hr = SetInteractionConfigurationInteractionContext(context, 0, NULL);
-    ok(hr == E_INVALIDARG, "Got hr %#x.\n", hr);
+    ok(hr == E_INVALIDARG, "Got hr %#lx.\n", hr);
     hr = SetInteractionConfigurationInteractionContext(context, 1, NULL);
-    ok(hr == E_POINTER, "Got hr %#x.\n", hr);
+    ok(hr == E_POINTER, "Got hr %#lx.\n", hr);
 
     hr = SetInteractionConfigurationInteractionContext(context, ARRAY_SIZE(config), config);
-    ok(hr == S_OK, "Failed to set configuration, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to set configuration, hr %#lx.\n", hr);
 
     hr = DestroyInteractionContext(context);
-    ok(hr == S_OK, "Failed to destroy context, hr %#x.\n", hr);
+    ok(hr == S_OK, "Failed to destroy context, hr %#lx.\n", hr);
 }
 
 START_TEST(ninput)




More information about the wine-cvs mailing list