Commit 5f20ecc6 authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32/tests: Remove a couple of invalid tests.

parent 0b3b6ba2
......@@ -851,7 +851,6 @@ static void test_MapViewOfFile(void)
ret = VirtualQuery(ptr, &info, sizeof(info));
ok(ret, "VirtualQuery error %d\n", GetLastError());
ok(info.BaseAddress == ptr, "got %p != expected %p\n", info.BaseAddress, ptr);
ok(info.RegionSize != MAPPING_SIZE, "got size %#lx\n", info.RegionSize);
ok(info.Protect == PAGE_NOACCESS, "got %#x != expected PAGE_NOACCESS\n", info.Protect);
ok(info.AllocationBase == NULL, "%p != NULL\n", info.AllocationBase);
ok(info.AllocationProtect == 0, "%#x != 0\n", info.AllocationProtect);
......@@ -932,7 +931,6 @@ static void test_MapViewOfFile(void)
ret = VirtualQuery(ptr, &info, sizeof(info));
ok(ret, "VirtualQuery error %d\n", GetLastError());
ok(info.BaseAddress == ptr, "got %p != expected %p\n", info.BaseAddress, ptr);
ok(info.RegionSize != MAPPING_SIZE, "got size %#lx\n", info.RegionSize);
ok(info.Protect == PAGE_NOACCESS, "got %#x != expected PAGE_NOACCESS\n", info.Protect);
ok(info.AllocationBase == NULL, "%p != NULL\n", info.AllocationBase);
ok(info.AllocationProtect == 0, "%#x != 0\n", info.AllocationProtect);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment