reactos/rostests/apitests/gdi32api/tests/EngReleaseSemaphore.c
Timo Kreuzer 66397a3a3f - add test for GdiGetCharDimension
- fix a test name
- comment out more tests for EngReleaseSemaphore, they cause heap corruption on ros
- convert more TEST -> RTEST

svn path=/trunk/; revision=33994
2008-06-16 15:24:05 +00:00

57 lines
1.6 KiB
C

/* Simple test of EngAcquireSemaphore only check if we got a lock or not */
INT
Test_EngReleaseSemaphore(PTESTINFO pti)
{
HSEMAPHORE hsem;
PRTL_CRITICAL_SECTION lpcrit;
hsem = EngCreateSemaphore();
ASSERT(hsem != NULL);
lpcrit = (PRTL_CRITICAL_SECTION) hsem;
EngAcquireSemaphore(hsem);
EngReleaseSemaphore(hsem);
RTEST (lpcrit->LockCount != 0);
RTEST (lpcrit->RecursionCount == 0);
RTEST (lpcrit->OwningThread == 0);
RTEST (lpcrit->LockSemaphore == 0);
RTEST (lpcrit->SpinCount == 0);
ASSERT(lpcrit->DebugInfo != NULL);
RTEST (lpcrit->DebugInfo->Type == 0);
RTEST (lpcrit->DebugInfo->CreatorBackTraceIndex == 0);
RTEST (lpcrit->DebugInfo->EntryCount == 0);
RTEST (lpcrit->DebugInfo->ContentionCount == 0);
EngDeleteSemaphore(hsem);
/* try with deleted Semaphore */
// EngReleaseSemaphore(hsem); -> this leads to heap correuption
// RTEST (lpcrit->LockCount > 0);
// RTEST (lpcrit->RecursionCount != 0);
// RTEST (lpcrit->OwningThread == 0);
// RTEST (lpcrit->LockSemaphore == 0);
// RTEST (lpcrit->SpinCount == 0);
// ASSERT(lpcrit->DebugInfo != NULL);
// RTEST (lpcrit->DebugInfo->Type != 0);
// RTEST (lpcrit->DebugInfo->CreatorBackTraceIndex != 0);
// RTEST (lpcrit->DebugInfo->EntryCount != 0);
// RTEST (lpcrit->DebugInfo->ContentionCount != 0);
/* NULL pointer test */
// Note NULL pointer test crash in Vista */
// EngReleaseSemaphore(NULL);
/* negtive pointer test */
// Note negtive pointer test crash in Vista */
// EngReleaseSemaphore((HSEMAPHORE)-1);
return APISTATUS_NORMAL;
}