From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web10.2854.1680906059556530823 for ; Fri, 07 Apr 2023 15:21:00 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=XiLq+Xl4; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: michael.d.kinney@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1680906060; x=1712442060; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=8mj3rukp2BAMHFoo+V/Qe6LG+1y5m53SVEVKw2K7XgY=; b=XiLq+Xl40Rg+EhWgbT1/S2p2wEX8JpLsVL6hUf8JNxJrJOTfmPKl2Nz3 56vtJRnLWJPcUT3N/bb/9zVRAAuJdCLX6XBx6IDEYxm0BdCNU+AZMkeIB p5N2hc//vgb8tZM3viTH/JjxZurra3yTwTOPgvGPXQqz1Wrv0Xg1oG2Xh XzXp8pUQmMcHcInpeIyIC7rxRiYlO4twcxTkopp7ko75hAgcmWeJjTy34 Q7MIJR7X9uKbDHW/pAPGMFHB9WkMafNyv3XC5IpbrCe+4fMXb4M/GegBE oM7ya1fsgU2WCDUwKIgAmsgE5xcO8j5lPakrTzUqJEcpqGKpsejsTWPsn g==; X-IronPort-AV: E=McAfee;i="6600,9927,10673"; a="343085642" X-IronPort-AV: E=Sophos;i="5.98,328,1673942400"; d="scan'208";a="343085642" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Apr 2023 15:21:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10673"; a="690177462" X-IronPort-AV: E=Sophos;i="5.98,328,1673942400"; d="scan'208";a="690177462" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.209.18.108]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Apr 2023 15:20:59 -0700 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Chris Johnson , Sean Brogan , Michael Kubacki , Liming Gao , Leif Lindholm , Michael Kubacki , Oliver Smith-Denny Subject: [Patch v3 02/12] .pytool/CISettings.py: Add subhook submodule Date: Fri, 7 Apr 2023 15:20:40 -0700 Message-Id: <20230407222051.1095-3-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230407222051.1095-1-michael.d.kinney@intel.com> References: <20230407222051.1095-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chris Johnson REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4389 Add submodule for https://github.com/Zeex/subhook This submodule is required to hook internal functions when using gmock. Cc: Sean Brogan Cc: Michael Kubacki Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Chris Johnson Reviewed-by: Leif Lindholm Reviewed-by: Michael Kubacki Reviewed-by: Oliver Smith-Denny Reviewed-by: Michael D Kinney --- .pytool/CISettings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py index d87c8e838e61..e3f44add5834 100644 --- a/.pytool/CISettings.py +++ b/.pytool/CISettings.py @@ -193,6 +193,8 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag "BaseTools/Source/C/BrotliCompress/brotli", False)) rs.append(RequiredSubmodule( "RedfishPkg/Library/JsonLib/jansson", False)) + rs.append(RequiredSubmodule( + "UnitTestFrameworkPkg/Library/SubhookLib/subhook", False)) return rs def GetName(self): -- 2.39.1.windows.1