mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
a1b89faa39
Add a test for NtReleaseMutant svn path=/trunk/; revision=63299
27 lines
366 B
C
27 lines
366 B
C
|
|
#include <apitest.h>
|
|
|
|
#include <ndk/exfuncs.h>
|
|
|
|
|
|
VOID
|
|
Test_Release(VOID)
|
|
{
|
|
HANDLE MutantHandle;
|
|
NTSTATUS Status;
|
|
|
|
Status = NtCreateMutant(&MutantHandle, 0, NULL, TRUE);
|
|
ok_ntstatus(Status, STATUS_SUCCESS);
|
|
|
|
Status = NtReleaseMutant(MutantHandle, NULL);
|
|
ok_ntstatus(Status, STATUS_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
START_TEST(NtMutant)
|
|
{
|
|
Test_Release();
|
|
}
|