diff options
author | Michael Kubacki <michael.kubacki@microsoft.com> | 2023-08-11 20:02:27 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-09-19 01:20:27 +0000 |
commit | 1312c2e9fd0d8691af1abb4c0afeb49981a5176c (patch) | |
tree | e4392927d6857bdf9d33485f2cf5ada6c1e6e9d7 | |
parent | bc7bbd3bc4c990014da33cae0979b3bc9138d3ec (diff) | |
download | edk2-1312c2e9fd0d8691af1abb4c0afeb49981a5176c.tar.gz |
ArmVirtPkg.ci.yaml: Add debug macro exception
Adds a CI YAML entry to acknowledge a case where a macro is expanded
that contains a print specifier.
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <quic_llindhol@quicinc.com>
Cc: Sami Mujawar <sami.mujawar@arm.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
-rw-r--r-- | ArmVirtPkg/ArmVirtPkg.ci.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ArmVirtPkg/ArmVirtPkg.ci.yaml b/ArmVirtPkg/ArmVirtPkg.ci.yaml index 1e799dc4e1..506b0e72f0 100644 --- a/ArmVirtPkg/ArmVirtPkg.ci.yaml +++ b/ArmVirtPkg/ArmVirtPkg.ci.yaml @@ -125,5 +125,13 @@ ], # words to extend to the dictionary for this package
"IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
"AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
+ },
+
+ "DebugMacroCheck": {
+ "StringSubstitutions": {
+ # DynamicTablesPkg/Include/ConfigurationManagerObject.h
+ # Reason: Expansion of macro that contains a print specifier.
+ "FMT_CM_OBJECT_ID": "0x%lx"
+ }
}
}
|