Skip to content

Commit 1cb7a74

Browse files
committed
[WIN32U_APITEST] Comment out 2 tests in NtGdiArcInternal
These fail on win 2003. Needs more investigation.
1 parent 19450a9 commit 1cb7a74

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

modules/rostests/apitests/win32u/ntgdi/NtGdiArcInternal.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,9 @@ START_TEST(NtGdiArcInternal)
3131
ok_long(GetLastError(), ERROR_INVALID_HANDLE);
3232

3333
SetLastError(ERROR_SUCCESS);
34-
ok_int(NtGdiArcInternal(0, hDC, 10, 10, 0, 0, 0, 0, 0, 0), TRUE);
35-
ok_int(NtGdiArcInternal(0, hDC, 10, 10, -10, -10, 0, 0, 0, 0), TRUE);
34+
//ok_int(NtGdiArcInternal(0, hDC, 10, 10, 0, 0, 0, 0, 0, 0), TRUE); // Fails on Windows 2003
35+
//ok_int(NtGdiArcInternal(0, hDC, 10, 10, -10, -10, 0, 0, 0, 0), TRUE); // Fails on Windows 2003
3636
ok_int(NtGdiArcInternal(0, hDC, 0, 0, 0, 0, 10, 0, -10, 0), TRUE);
3737

38-
// was passiert, wenn left > right ? einfach tauschen?
39-
4038
DeleteDC(hDC);
4139
}

0 commit comments

Comments
 (0)