mirror of https://github.com/microsoft/WSL
29 lines
400 B
C
29 lines
400 B
C
/*++
|
|
|
|
Copyright (c) Microsoft. All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
lxtcommon.h
|
|
|
|
Abstract:
|
|
|
|
This is a common header file for lx tests.
|
|
|
|
--*/
|
|
|
|
#ifndef _LXT_COMMON
|
|
#define _LXT_COMMON
|
|
|
|
#include "lxtlog.h"
|
|
#include "lxtutil.h"
|
|
#include "lxtevent.h"
|
|
|
|
#ifndef PAGE_SIZE
|
|
#define PAGE_SIZE 0x1000
|
|
#endif
|
|
|
|
#define LXSS_DISTRO_NAME_TEST "test_distro"
|
|
|
|
#endif // _LXT_COMMON
|