summaryrefslogtreecommitdiffstats
path: root/private/ntos/se/utaccess.c
blob: 444f7f7e47fd590bc4a0294d5b0acb12caa0018e (plain) (blame)
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
/*++

Copyright (c) 1989  Microsoft Corporation

Module Name:

    utaccess.c

Abstract:

    Security component user-mode test.

Author:

    Robert Reichel (RobertRe) 14-Dec-90

Revision History:

--*/

#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>

#define _TST_USER_  // User mode test


#include "tsevars.c"    // Common test variables

#include "ctaccess.c"     // Common accessibility test routines



BOOLEAN
Test()
{
    BOOLEAN Result = TRUE;

    DbgPrint("Se: Start User Mode Access Test...\n");

    Result = CTAccess();

    DbgPrint("Se: End User Mode Access Test.\n");

    return Result;
}

BOOLEAN
main()
{
    return Test();
}