From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.43; helo=mga05.intel.com; envelope-from=michael.d.kinney@intel.com; receiver=edk2-devel@lists.01.org Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 3B3DD221523BF for ; Tue, 19 Dec 2017 15:55:37 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Dec 2017 16:00:24 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,429,1508828400"; d="scan'208";a="13197415" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.241.98.58]) by FMSMGA003.fm.intel.com with ESMTP; 19 Dec 2017 16:00:24 -0800 From: "Kinney, Michael D" To: edk2-devel@lists.01.org Cc: Sean Brogan , Liming Gao , Michael D Kinney Date: Tue, 19 Dec 2017 16:00:12 -0800 Message-Id: <20171220000014.9140-9-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.14.2.windows.3 In-Reply-To: <20171220000014.9140-1-michael.d.kinney@intel.com> References: <20171220000014.9140-1-michael.d.kinney@intel.com> Subject: [staging/edk2-test Patch 08/10] MsUnitTestPkg: Add missing library classes X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Dec 2017 23:55:37 -0000 Cc: Sean Brogan Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney --- MsUnitTestPkg/MsUnitTestPkg.dec | 47 ++++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 22 deletions(-) diff --git a/MsUnitTestPkg/MsUnitTestPkg.dec b/MsUnitTestPkg/MsUnitTestPkg.dec index 9bc205c377..7d0d845eb5 100644 --- a/MsUnitTestPkg/MsUnitTestPkg.dec +++ b/MsUnitTestPkg/MsUnitTestPkg.dec @@ -1,7 +1,7 @@ -## @file MsUnitTestPkg.dec -# -# This Package provides all definitions(including functions, MACROs, structures and library classes) -# and libraries instances, which are used to support Unit Testing and Interface testing +## @file +# This Package provides all definitions(including functions, MACROs, structures +# and library classes) and libraries instances, which are used to support Unit +# Testing and Interface testing # # Copyright (c) 2016, Microsoft Corporation # @@ -26,42 +26,45 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ## - [Defines] DEC_SPECIFICATION = 0x00010005 PACKAGE_NAME = MsUnitTestPkg PACKAGE_GUID = 4A70C4A0-D72C-4D3F-9943-BE7C41C50BA3 PACKAGE_VERSION = 1.00 - [Includes] Include [LibraryClasses] + ## @libraryclass Provide unit test assert helpers + UnitTestAssertLib|Include/Library/UnitTestAssertLib.h - ## @libraryclass Provides a unit test framework - # - UnitTestLib|Include\Library\UnitTestLib.h + ## @libraryclass Provides a library function that can be customized to set + # the platform to boot from USB on the next boot. + UnitTestBootUsbLib|Include/Library/UnitTestBootUsbLib.h - ## @libraryclass Provide unit test assert helpers - # - UnitTestAssertLib|Include\Library\UnitTestAssertLib.h + ## @libraryclass Provides a unit test framework + UnitTestLib|Include/Library/UnitTestLib.h -[Guids] + ## @libraryclass Provides a unit test framework logging. This allows tests + # to focus on testing logic and the library to handle unit + # test specific logging. + UnitTestLogLib|Include/Library/UnitTestLogLib.h + + ## @libraryclass Provides functions to save and restore unit test internal + # state, in case the test needs to pause and resume (eg. a + # reboot-based test). + UnitTestPersistenceLib|Include/Library/UnitTestPersistenceLib.h + + ## @libraryclass Provides a unit test result report. This allows new result + # output formats to be easily customized. + UnitTestResultReportLib|Include/Library/UnitTestResultReportLib.h +[Guids] ## Microsoft Unit Test Package token space guid # Include/Guid/MsUnitTestPkgTokenSpace.h # {833D3ABA-39B4-43A2-B930-7A34533931B3} gMsUnitTestPkgTokenSpaceGuid = { 0x833d3aba, 0x39b4, 0x43a2, { 0xb9, 0x30, 0x7a, 0x34, 0x53, 0x39, 0x31, 0xb3 } } -[Ppis] - -[Protocols] - -[PcdsFeatureFlag] - -[PcdsDynamic, PcdsDynamicEx] - [PcdsFixedAtBuild] gMsUnitTestPkgTokenSpaceGuid.UnitTestLogLevel|0xFFFFFFFF|UINT32|0x00000001 - -- 2.14.2.windows.3