| 1 | /*++ |
| 2 | |
| 3 | Copyright (c) Microsoft. All rights reserved. |
| 4 | |
| 5 | Module Name: |
| 6 | |
| 7 | lxtcommon.h |
| 8 | |
| 9 | Abstract: |
| 10 | |
| 11 | This is a common header file for lx tests. |
| 12 | |
| 13 | --*/ |
| 14 | |
| 15 | #ifndef _LXT_COMMON |
| 16 | #define _LXT_COMMON |
| 17 | |
| 18 | #include "lxtlog.h" |
| 19 | #include "lxtutil.h" |
| 20 | #include "lxtevent.h" |
| 21 | |
| 22 | #ifndef PAGE_SIZE |
| 23 | #define PAGE_SIZE 0x1000 |
| 24 | #endif |
| 25 | |
| 26 | #define LXSS_DISTRO_NAME_TEST "test_distro" |
| 27 | |
| 28 | #endif // _LXT_COMMON |