Author: akhaldi
Date: Sun Jun  5 19:18:47 2016
New Revision: 71552

URL: http://svn.reactos.org/svn/reactos?rev=71552&view=rev
Log:
[IMAGEHLP_WINETEST] Sync with Wine Staging 1.9.11. CORE-11368

Modified:
    trunk/rostests/winetests/imagehlp/image.c

Modified: trunk/rostests/winetests/imagehlp/image.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/imagehlp/image.c?rev=71552&r1=71551&r2=71552&view=diff
==============================================================================
--- trunk/rostests/winetests/imagehlp/image.c   [iso-8859-1] (original)
+++ trunk/rostests/winetests/imagehlp/image.c   [iso-8859-1] Sun Jun  5 
19:18:47 2016
@@ -462,10 +462,8 @@
 
     if (img)
     {
-        todo_wine
         ok(!strcmp(img->ModuleName, temp_file),
            "unexpected ModuleName, got %s instead of %s\n", img->ModuleName, 
temp_file);
-        todo_wine
         ok(img->MappedAddress != NULL, "MappedAddress != NULL\n");
         if (img->MappedAddress)
         {
@@ -475,11 +473,9 @@
         ok(img->FileHeader != NULL, "FileHeader != NULL\n");
         if (img->FileHeader)
         {
-            todo_wine
             ok(!memcmp(img->FileHeader, &bin.nt_headers, 
sizeof(bin.nt_headers)),
                 "FileHeader doesn't point to IMAGE_NT_HEADERS32\n");
         }
-        todo_wine
         ok(img->NumberOfSections == 3,
            "unexpected NumberOfSections, got %d instead of 3\n", 
img->NumberOfSections);
         if (img->NumberOfSections >= 3)
@@ -494,7 +490,6 @@
                "unexpected name for section 2, expected .idata, got %s\n",
                (const char *)img->Sections[2].Name);
         }
-        todo_wine
         ok(img->Characteristics == 0x102,
            "unexpected Characteristics, got 0x%x instead of 0x102\n", 
img->Characteristics);
         ok(img->fSystemImage == 0,
@@ -507,7 +502,6 @@
         todo_wine
         ok(img->Version == 1 || broken(!img->Version) /* <= WinXP */,
            "unexpected Version, got %d instead of 1\n", img->Version);
-        todo_wine
         ok(img->SizeOfImage == 0x600,
            "unexpected SizeOfImage, got 0x%x instead of 0x600\n", 
img->SizeOfImage);
 


Reply via email to