TianoCore EDK2 master
Loading...
Searching...
No Matches
UnitTestPersistenceLibNull.c File Reference

Go to the source code of this file.

Functions

BOOLEAN EFIAPI DoesCacheExist (IN UNIT_TEST_FRAMEWORK_HANDLE FrameworkHandle)
 
EFI_STATUS EFIAPI SaveUnitTestCache (IN UNIT_TEST_FRAMEWORK_HANDLE FrameworkHandle, IN VOID *SaveData, IN UINTN SaveStateSize)
 
EFI_STATUS EFIAPI LoadUnitTestCache (IN UNIT_TEST_FRAMEWORK_HANDLE FrameworkHandle, OUT VOID **SaveData, OUT UINTN *SaveStateSize)
 

Detailed Description

This is an instance of the Unit Test Persistence Lib that does nothing.

Copyright (c) Microsoft Corporation.
Copyright (c) 2022, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file UnitTestPersistenceLibNull.c.

Function Documentation

◆ DoesCacheExist()

BOOLEAN EFIAPI DoesCacheExist ( IN UNIT_TEST_FRAMEWORK_HANDLE  FrameworkHandle)

Determines whether a persistence cache already exists for the given framework.

Parameters
[in]FrameworkHandleA pointer to the framework that is being persisted.
Return values
TRUE
FALSECache doesn't exist or an error occurred.

Definition at line 24 of file UnitTestPersistenceLibNull.c.

◆ LoadUnitTestCache()

EFI_STATUS EFIAPI LoadUnitTestCache ( IN UNIT_TEST_FRAMEWORK_HANDLE  FrameworkHandle,
OUT VOID **  SaveData,
OUT UINTN SaveStateSize 
)

Will retrieve any cached state associated with the given framework. Will allocate a buffer to hold the loaded data.

Parameters
[in]FrameworkHandleA pointer to the framework that is being persisted.
[out]SaveDataA pointer pointer that will be updated with the address of the loaded data buffer.
[out]SaveStateSizeReturn the size of SaveData in bytes.
Return values
EFI_SUCCESSData has been loaded successfully and SaveData is updated with a pointer to the buffer.
OthersAn error has occurred and no data has been loaded. SaveData is set to NULL.

Definition at line 73 of file UnitTestPersistenceLibNull.c.

◆ SaveUnitTestCache()

EFI_STATUS EFIAPI SaveUnitTestCache ( IN UNIT_TEST_FRAMEWORK_HANDLE  FrameworkHandle,
IN VOID *  SaveData,
IN UINTN  SaveStateSize 
)

Will save the data associated with an internal Unit Test Framework state in a manner that can persist a Unit Test Application quit or even a system reboot.

Parameters
[in]FrameworkHandleA pointer to the framework that is being persisted.
[in]SaveDataA pointer to the buffer containing the serialized framework internal state.
[in]SaveStateSizeThe size of SaveData in bytes.
Return values
EFI_SUCCESSData is persisted and the test can be safely quit.
OthersData is not persisted and test cannot be resumed upon exit.

Definition at line 47 of file UnitTestPersistenceLibNull.c.