]>
Commit | Line | Data |
---|---|---|
0f7fb5c5 MK |
1 | ## @file\r |
2 | # This Package provides all definitions (including functions, MACROs,\r | |
3 | # structures library classes, and PCDs) and libraries instances, which are used\r | |
4 | # to support unit testing and interface testing.\r | |
5 | #\r | |
6 | # Copyright (c) Microsoft Corporation.<BR>\r | |
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent\r | |
8 | #\r | |
9 | ##\r | |
10 | \r | |
11 | [Defines]\r | |
12 | DEC_SPECIFICATION = 0x00010005\r | |
13 | PACKAGE_NAME = UnitTestFrameworkPkg\r | |
14 | PACKAGE_UNI_FILE = UnitTestFrameworkPkg.uni\r | |
15 | PACKAGE_GUID = 4A70C4A0-D72C-4D3F-9943-BE7C41C50BA3\r | |
16 | PACKAGE_VERSION = 1.00\r | |
17 | \r | |
18 | [Includes]\r | |
19 | Library/CmockaLib/cmocka/include\r | |
20 | \r | |
21 | [Includes.Common.Private]\r | |
22 | PrivateInclude\r | |
23 | Library/CmockaLib/cmocka/include/cmockery\r | |
24 | \r | |
25 | [LibraryClasses.Common.Private]\r | |
26 | ## @libraryclass Allows save and restore unit test internal state\r | |
27 | #\r | |
28 | UnitTestPersistenceLib|PrivateInclude/Library/UnitTestPersistenceLib.h\r | |
29 | \r | |
30 | ## @libraryclass Provides a unit test result report\r | |
31 | #\r | |
32 | UnitTestResultReportLib|PrivateInclude/Library/UnitTestResultReportLib.h\r | |
33 | \r | |
34 | ## @libraryclass Provides boot-option routines useful in shell-based tests.\r | |
35 | #\r | |
36 | UnitTestBootLib|PrivateInclude/Library/UnitTestBootLib.h\r | |
37 | \r | |
38 | [Guids]\r | |
39 | gUnitTestFrameworkPkgTokenSpaceGuid = { 0x833d3aba, 0x39b4, 0x43a2, { 0xb9, 0x30, 0x7a, 0x34, 0x53, 0x39, 0x31, 0xb3 } }\r | |
40 | \r | |
41 | [PcdsFixedAtBuild]\r | |
42 | ## This flag is used to control build time optimization based on unit test\r | |
43 | # log level. The default value is 0xFFFFFFFF to enable all unit test log\r | |
44 | # messages.\r | |
45 | # BIT0 - Error unit test log messages.<BR>\r | |
46 | # BIT1 - Warning unit test log messages.<BR>\r | |
47 | # BIT2 - Informational unit test log messages.<BR>\r | |
48 | # BIT3 - Verbose unit test log messages.<BR>\r | |
49 | # @Prompt Unit Test Log Message Level\r | |
50 | gUnitTestFrameworkPkgTokenSpaceGuid.PcdUnitTestLogLevel|0xFFFFFFFF|UINT32|0x00000001\r |