mirror of
https://github.com/acpica/acpica/
synced 2025-01-17 23:09:18 +03:00
35 lines
753 B
C
Executable File
35 lines
753 B
C
Executable File
/******************************************************************************
|
|
*
|
|
* Module Name: atmemory - ACPICA Memory Management API tests
|
|
* $Revision: 1.1 $
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#include "atcommon.h"
|
|
#include "atmemory.h"
|
|
#include "atosxfctrl.h"
|
|
|
|
#define _COMPONENT ACPI_TOOLS
|
|
ACPI_MODULE_NAME ("atmemory")
|
|
|
|
/*
|
|
* ASSERTION 0000:
|
|
*/
|
|
ACPI_STATUS
|
|
AtMemoryTest0000(void)
|
|
{
|
|
ACPI_STATUS Status;
|
|
|
|
Status = AtSubsystemInit(
|
|
AAPITS_INI_DEF,
|
|
AAPITS_EN_FLAGS, AAPITS_OI_FLAGS, NULL);
|
|
if (ACPI_FAILURE(Status))
|
|
{
|
|
return Status;
|
|
}
|
|
|
|
TestSkipped++;
|
|
|
|
return AtTerminateCtrlCheck(AE_OK, ALL_STAT);
|
|
}
|