mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 02:03:13 +00:00
[ROSTESTS]
Properly skip bitmap and outline tests in gdi32_winetest:font. svn path=/trunk/; revision=51001
This commit is contained in:
parent
ccd17d40ec
commit
b2832e17fc
1 changed files with 12 additions and 3 deletions
|
@ -313,9 +313,12 @@ static void test_bitmap_font(void)
|
||||||
SIZE size_orig;
|
SIZE size_orig;
|
||||||
INT ret, i, width_orig, height_orig, scale, lfWidth;
|
INT ret, i, width_orig, height_orig, scale, lfWidth;
|
||||||
|
|
||||||
skip("ROS-HACK: Skipping bitmap font tests!\n");
|
if(!winetest_interactive)
|
||||||
return;
|
{
|
||||||
|
skip("reactos bug 5401: Skipping bitmap font tests!\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
hdc = GetDC(0);
|
hdc = GetDC(0);
|
||||||
|
|
||||||
/* "System" has only 1 pixel size defined, otherwise the test breaks */
|
/* "System" has only 1 pixel size defined, otherwise the test breaks */
|
||||||
|
@ -410,6 +413,12 @@ static void test_outline_font(void)
|
||||||
POINT pt;
|
POINT pt;
|
||||||
INT ret;
|
INT ret;
|
||||||
|
|
||||||
|
if(!winetest_interactive)
|
||||||
|
{
|
||||||
|
skip("reactos bug 5401: Skipping outline font tests!\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!is_truetype_font_installed("Arial"))
|
if (!is_truetype_font_installed("Arial"))
|
||||||
{
|
{
|
||||||
skip("Arial is not installed\n");
|
skip("Arial is not installed\n");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue