diff --git a/rostests/apitests/gdi32/GetDIBits.c b/rostests/apitests/gdi32/GetDIBits.c index dad441c2786..3f9f35da04c 100644 --- a/rostests/apitests/gdi32/GetDIBits.c +++ b/rostests/apitests/gdi32/GetDIBits.c @@ -9,8 +9,8 @@ #include #include -#define TEST(x) ok(x, #x) -#define RTEST(x) ok(x, #x) +#define TEST(x) ok(x, #x"\n") +#define RTEST(x) ok(x, #x"\n") void Test_GetDIBits() { diff --git a/rostests/apitests/gdi32/GetStockObject.c b/rostests/apitests/gdi32/GetStockObject.c index ab2b422f4d1..462d4f197f1 100644 --- a/rostests/apitests/gdi32/GetStockObject.c +++ b/rostests/apitests/gdi32/GetStockObject.c @@ -12,8 +12,8 @@ #include #include -#define TEST(x) ok(x, #x) -#define RTEST(x) ok(x, #x) +#define TEST(x) ok(x, #x"\n") +#define RTEST(x) ok(x, #x"\n") void Test_GetStockObject() { diff --git a/rostests/apitests/gdi32/GetTextExtentExPoint.c b/rostests/apitests/gdi32/GetTextExtentExPoint.c index a46a5091220..b0368363c65 100644 --- a/rostests/apitests/gdi32/GetTextExtentExPoint.c +++ b/rostests/apitests/gdi32/GetTextExtentExPoint.c @@ -9,8 +9,8 @@ #include #include -#define TEST(x) ok(x, #x) -#define RTEST(x) ok(x, #x) +#define TEST(x) ok(x, #x"\n") +#define RTEST(x) ok(x, #x"\n") void Test_GetTextExtentExPoint() { diff --git a/rostests/apitests/gdi32/GetTextFace.c b/rostests/apitests/gdi32/GetTextFace.c index 65af6bbc0cb..7e6c7f97487 100644 --- a/rostests/apitests/gdi32/GetTextFace.c +++ b/rostests/apitests/gdi32/GetTextFace.c @@ -9,8 +9,8 @@ #include #include -#define TEST(x) ok(x, #x) -#define RTEST(x) ok(x, #x) +#define TEST(x) ok(x, #x"\n") +#define RTEST(x) ok(x, #x"\n") void Test_GetTextFace() { diff --git a/rostests/apitests/gdi32/SelectObject.c b/rostests/apitests/gdi32/SelectObject.c index 5ac618447c8..dae683a90fd 100644 --- a/rostests/apitests/gdi32/SelectObject.c +++ b/rostests/apitests/gdi32/SelectObject.c @@ -12,8 +12,8 @@ #include #include -#define TEST(x) ok(x, #x) -#define RTEST(x) ok(x, #x) +#define TEST(x) ok(x, #x"\n") +#define RTEST(x) ok(x, #x"\n") void Test_SelectObject() { @@ -101,7 +101,7 @@ void Test_SelectObject() RTEST((UINT_PTR)SelectObject(hDC, hNewObj) == SIMPLEREGION); // ??? Why this? DeleteObject(hNewObj); // TEST(IsHandleValid(hNewObj) == TRUE); - + RTEST(GetLastError() == ERROR_SUCCESS); /* Test BITMAP */ diff --git a/rostests/apitests/gdi32/SetMapMode.c b/rostests/apitests/gdi32/SetMapMode.c index be452c53c8d..b0bdd3e5136 100644 --- a/rostests/apitests/gdi32/SetMapMode.c +++ b/rostests/apitests/gdi32/SetMapMode.c @@ -9,8 +9,8 @@ #include #include -#define TEST(x) ok(x, #x) -#define RTEST(x) ok(x, #x) +#define TEST(x) ok(x, #x"\n") +#define RTEST(x) ok(x, #x"\n") void Test_SetMapMode() { diff --git a/rostests/apitests/gdi32/SetSysColors.c b/rostests/apitests/gdi32/SetSysColors.c index aedadfc0509..1c75fbf8c82 100644 --- a/rostests/apitests/gdi32/SetSysColors.c +++ b/rostests/apitests/gdi32/SetSysColors.c @@ -9,8 +9,8 @@ #include #include -#define TEST(x) ok(x, #x) -#define RTEST(x) ok(x, #x) +#define TEST(x) ok(x, #x"\n") +#define RTEST(x) ok(x, #x"\n") #define NUM_SYSCOLORS 31 diff --git a/rostests/apitests/gdi32/SetWindowExtEx.c b/rostests/apitests/gdi32/SetWindowExtEx.c index 6198448e737..99879b9755a 100644 --- a/rostests/apitests/gdi32/SetWindowExtEx.c +++ b/rostests/apitests/gdi32/SetWindowExtEx.c @@ -9,8 +9,8 @@ #include #include -#define TEST(x) ok(x, #x) -#define RTEST(x) ok(x, #x) +#define TEST(x) ok(x, #x"\n") +#define RTEST(x) ok(x, #x"\n") void Test_SetWindowExtEx() { @@ -101,7 +101,7 @@ void Test_SetWindowExtEx() //TEST(WindowExt.cy == 2700); /* Values should be changed */ - ret = SetWindowExtEx(hDC, + ret = SetWindowExtEx(hDC, 4 * GetDeviceCaps(GetDC(0), HORZRES), -4 * GetDeviceCaps(GetDC(0), VERTRES), &WindowExt);