[2/5] kernel32/tests: Add a test to show that VirtualFree fails with type MEM_FREE.

Sebastian Lackner sebastian at fds-team.de
Sat Feb 13 15:24:30 CST 2016


Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
---

This is a common mistake in some wine tests.

 dlls/kernel32/tests/virtual.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dlls/kernel32/tests/virtual.c b/dlls/kernel32/tests/virtual.c
index e614bde..f47a54c 100644
--- a/dlls/kernel32/tests/virtual.c
+++ b/dlls/kernel32/tests/virtual.c
@@ -369,6 +369,11 @@ static void test_VirtualAlloc(void)
     ok(GetLastError() == ERROR_INVALID_PARAMETER,
         "got %d, expected ERROR_INVALID_PARAMETER\n", GetLastError());
 
+    SetLastError(0xdeadbeef);
+    ok(!VirtualFree(addr1, 0, MEM_FREE), "VirtualFree should fail with type MEM_FREE\n");
+    ok(GetLastError() == ERROR_INVALID_PARAMETER,
+        "got %d, expected ERROR_INVALID_PARAMETER\n", GetLastError());
+
     ok(VirtualFree(addr1, 0x10000, MEM_DECOMMIT), "VirtualFree failed\n");
 
     /* if the type is MEM_RELEASE, size must be 0 */
-- 
2.7.1



More information about the wine-patches mailing list