[ROSTESTS]
authorJérôme Gardou <jerome.gardou@reactos.org>
Fri, 14 May 2010 23:21:04 +0000 (23:21 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Fri, 14 May 2010 23:21:04 +0000 (23:21 +0000)
  - something went wrong with previous commit...

svn path=/trunk/; revision=47211

rostests/apitests/w32knapi/ntgdi/NtGdiDeleteObjectApp.c

index 351de95..7403ab4 100644 (file)
@@ -49,26 +49,6 @@ Test_NtGdiDeleteObjectApp(PTESTINFO pti)
     /* Make sure */
     TEST(NtUserCallOneParam((DWORD_PTR)hdc, ONEPARAM_ROUTINE_RELEASEDC) == 0);
     
     /* Make sure */
     TEST(NtUserCallOneParam((DWORD_PTR)hdc, ONEPARAM_ROUTINE_RELEASEDC) == 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 brush */
     SetLastError(0);
     hbrush = CreateSolidBrush(0x123456);
     /* Delete a brush */
     SetLastError(0);
     hbrush = CreateSolidBrush(0x123456);