/** @file
|
Platform Memory Test NULL library
|
|
Copyright (c) 2019, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
#include <Uefi.h>
|
#include <Protocol/GenericMemoryTest.h>
|
|
/**
|
Perform the memory test base on the memory test intensive level,
|
and update the memory resource.
|
|
@param Level The memory test intensive level.
|
|
@retval EFI_STATUS Success test all the system memory and update
|
the memory resource
|
|
**/
|
EFI_STATUS
|
PlatformBootManagerMemoryTest (
|
IN EXTENDMEM_COVERAGE_LEVEL Level
|
)
|
{
|
return EFI_SUCCESS;
|
}
|