summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/threading/releasesemaphore/test1/test.c
blob: 4d736b7d9a3ad0af5f5866e5ff924e062ea9bab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*============================================================================
**
** Source: releasesemaphore/test1/createsemaphore.c
**
** Purpose: Check that ReleaseSemaphore fails when using a semaphore handle 
** which has been closed by a call to CloseHandle.  Check that
** ReleaseSemaphore fails when using a ReleaseCount of zero or less than 
** zero.
**
**
**==========================================================================*/

#include <palsuite.h>

HANDLE hSemaphore;

int __cdecl main (int argc, char **argv) 
{
    if(0 != (PAL_Initialize(argc, argv)))
    {
	return (FAIL);
    }
    hSemaphore = CreateSemaphoreA (NULL, 1, 2, NULL); 
        
    if (NULL == hSemaphore)
    {
        Fail("PALSUITE ERROR: CreateSemaphoreA ('%p' '%ld' '%ld' "
             "'%p') returned NULL.\nGetLastError returned %d.\n", 
             NULL, 1, 2, NULL, GetLastError()); 
    }

    if(ReleaseSemaphore(hSemaphore, 0, NULL))
    {
        Fail("PALSUITE ERROR: ReleaseSemaphore('%p' '%ld' '%p') "
             "call returned %d\nwhen it should have returned "
             "%d.\nGetLastError returned %d.\n", 
             hSemaphore, 0, NULL, FALSE, TRUE, GetLastError());
    }

    if(ReleaseSemaphore(hSemaphore, -1, NULL))
    {
        Fail("PALSUITE ERROR: ReleaseSemaphore('%p' '%ld' '%p') "
             "call returned %d\nwhen it should have returned "
             "%d.\nGetLastError returned %d.\n", 
             hSemaphore, -1, NULL, TRUE, FALSE, GetLastError());
    }

    if(!CloseHandle(hSemaphore))
    {
        Fail("PALSUITE ERROR: CloseHandle(%p) call failed.  GetLastError "
             "returned %d.\n", hSemaphore, GetLastError());
    }

    if(ReleaseSemaphore(hSemaphore, 1, NULL))
    {
        Fail("PALSUITE ERROR: ReleaseSemaphore('%p' '%ld' '%p') "
             "call incremented semaphore %p count\nafter the handle "
             "was closed by a call to CloseHandle.\n GetLastError returned "
             "%d.\n", hSemaphore, -1, NULL, hSemaphore, GetLastError());
    }
    
    PAL_Terminate();
    return (PASS);
}