mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
26 lines
664 B
C
26 lines
664 B
C
/*
|
|
* PROJECT: ReactOS kernel-mode tests
|
|
* LICENSE: LGPLv2.1+ - See COPYING.LIB in the top level directory
|
|
* PURPOSE: Kernel-Mode Test Suite power IRP management test user-mode part
|
|
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
|
|
*/
|
|
|
|
#include <kmt_test.h>
|
|
#include "PoIrp.h"
|
|
|
|
START_TEST(PoIrp)
|
|
{
|
|
#if defined(_M_AMD64)
|
|
if (TRUE)
|
|
{
|
|
skip(FALSE, "ROSTESTS-368: Skipping kmtest:PoIrp because it crashes on Windows Server 2003 x64-Testbot.\n");
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
KmtLoadDriver(L"PoIrp", TRUE);
|
|
KmtOpenDriver();
|
|
KmtSendToDriver(IOCTL_RUN_TEST);
|
|
KmtCloseDriver();
|
|
KmtUnloadDriver();
|
|
}
|