Compile switch to output all properties
With validation bits removed, debug scenarios might require all
fields to be printed regardless of their validity.
Disable unit tests in this case as round trip will fail.
Add meson switch to bb file to enable all properties:
EXTRA_OEMESON += "-Doutput_all_properties=enabled"
Tested with locally generated examples and diffing results.
Change-Id: Ic232c295197e2152735fcf0f33041d6f972512bc
Signed-off-by: Aushim Nagarkatti <anagarkatti@nvidia.com>
diff --git a/cper-utils.c b/cper-utils.c
index c777974..d36e944 100644
--- a/cper-utils.c
+++ b/cper-utils.c
@@ -241,6 +241,11 @@
// Overload function for 16, 32, 64b
bool isvalid_prop_to_ir(ValidationTypes *val, int vbit_idx)
{
+// If the option is enabled, output invalid properties
+// as well as valid ones.
+#ifdef OUTPUT_ALL_PROPERTIES
+ return true;
+#endif //OUTPUT_ALL_PROPERTIES
UINT64 vbit_mask = 0x01 << vbit_idx;
switch (val->size) {
case UINT_16T: