Author: akhaldi
Date: Mon Oct 3 14:13:41 2011
New Revision: 53954
URL:
http://svn.reactos.org/svn/reactos?rev=53954&view=rev
Log:
[GDI32_WINETEST]
* Skip some parts of bitmap test to allow Testman to handle it.
See issue #6527 for more details.
Modified:
trunk/rostests/winetests/gdi32/bitmap.c
Modified: trunk/rostests/winetests/gdi32/bitmap.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/gdi32/bitmap.c?…
==============================================================================
--- trunk/rostests/winetests/gdi32/bitmap.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/gdi32/bitmap.c [iso-8859-1] Mon Oct 3 14:13:41 2011
@@ -820,11 +820,11 @@
BITMAPINFO *bi = (BITMAPINFO *)buffer;
char data[256];
void *bits;
- int planes, bpp, compr;
+ //int planes, bpp, compr;
HBITMAP hdib, hbmp;
HDC hdc, memdc;
UINT ret;
- BOOL expect_ok, todo;
+ //BOOL expect_ok, todo;
hdc = GetDC( 0 );
memdc = CreateCompatibleDC( 0 );
@@ -832,6 +832,7 @@
memset( data, 0xaa, sizeof(data) );
+#if 0 // FIXME: ReactOS Bug 6527
for (bpp = 0; bpp <= 64; bpp++)
{
for (planes = 0; planes <= 64; planes++)
@@ -993,6 +994,7 @@
}
}
}
+#endif
memset( bi, 0, sizeof(bi->bmiHeader) );
bi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);