mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 12:14:32 +00:00
[w32knapi}
Patch by Jerome Gardou: add some more tests for NtGdiDeleteObjectApp svn path=/trunk/; revision=47130
This commit is contained in:
parent
e03efb63b2
commit
2545e83084
2 changed files with 23 additions and 1 deletions
|
@ -21,6 +21,8 @@ Test_NtGdiCreateCompatibleDC(PTESTINFO pti)
|
|||
/* The default pen should be GetStockObject(BLACK_PEN) */
|
||||
hObj = SelectObject(hDC, GetStockObject(WHITE_PEN));
|
||||
TEST(hObj == GetStockObject(BLACK_PEN));
|
||||
|
||||
TEST(NtGdiDeleteObjectApp(hDC) != 0);
|
||||
|
||||
TEST(NtGdiDeleteObjectApp(hDC) != 0);
|
||||
|
||||
|
|
|
@ -23,7 +23,27 @@ Test_NtGdiDeleteObjectApp(PTESTINFO pti)
|
|||
TEST(NtGdiDeleteObjectApp(hdc) == 1);
|
||||
TEST(GetLastError() == 0);
|
||||
TEST(IsHandleValid(hdc) == 0);
|
||||
|
||||
|
||||
/* Delete a display DC */
|
||||
SetLastError(0);
|
||||
hdc = CreateDC("DISPLAY", NULL, NULL, NULL);
|
||||
ASSERT(IsHandleValid(hdc) == 1);
|
||||
TEST(NtGdiDeleteObjectApp(hdc) != 0);
|
||||
TEST(GetLastError() == 0);
|
||||
TEST(IsHandleValid(hdc) == 1);
|
||||
TEST(SelectObject(hdc, GetStockObject(WHITE_PEN)) == NULL);
|
||||
TESTX(GetLastError() == ERROR_INVALID_PARAMETER, "GetLasterror returned 0x%08x\n", (unsigned int)GetLastError());
|
||||
|
||||
/* Once more */
|
||||
SetLastError(0);
|
||||
hdc = GetDC(0);
|
||||
ASSERT(IsHandleValid(hdc) == 1);
|
||||
TEST(NtGdiDeleteObjectApp(hdc) != 0);
|
||||
TEST(GetLastError() == 0);
|
||||
TEST(IsHandleValid(hdc) == 1);
|
||||
TEST(SelectObject(hdc, GetStockObject(WHITE_PEN)) == NULL);
|
||||
TESTX(GetLastError() == ERROR_INVALID_PARAMETER, "GetLasterror returned 0x%08x\n", (unsigned int)GetLastError());
|
||||
|
||||
/* Delete a display DC */
|
||||
SetLastError(0);
|
||||
hdc = CreateDC("DISPLAY", NULL, NULL, NULL);
|
||||
|
|
Loading…
Reference in a new issue