blob: 3fa287d1ae315ed9cf51b4f98c5286d7822ec5bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
## @file
# DXE driver that provides Shell 'MpProtocolUnitTest' dynamic command to test EfiMpServiceProtocol.
#
# Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
[Defines]
INF_VERSION = 0x00010005
BASE_NAME = EfiMpServiceProtocolDynamicCmdUnitTest
FILE_GUID = 8C4624B1-58CC-4DF6-9E6D-09B38D67DFA6
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
ENTRY_POINT = MpProtocolUnitTestCommandInitialize
UNLOAD_IMAGE = MpProtocolUnitTestUnload
[Sources]
EfiMpServicesUnitTestCommom.c
EfiMpServicesUnitTestCommom.h
EfiMpServiceProtocolUnitTest.c
EfiMpServiceProtocolDynamicCmdUnitTest.c
[Packages]
MdePkg/MdePkg.dec
MdeModulePkg/MdeModulePkg.dec
UefiCpuPkg/UefiCpuPkg.dec
[LibraryClasses]
BaseLib
DebugLib
BaseMemoryLib
MemoryAllocationLib
UefiDriverEntryPoint
UefiBootServicesTableLib
UefiLib
UnitTestPersistenceLib
UnitTestLib
[Protocols]
gEfiMpServiceProtocolGuid ## CONSUMES
gEfiShellDynamicCommandProtocolGuid ## PRODUCES
[Depex]
TRUE
|