summaryrefslogtreecommitdiff
path: root/lib/loader
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2022-10-25 15:55:36 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2022-10-25 15:55:36 +0200
commit5d0c06b49c3001be3fc7a445fb439d87df36f6c4 (patch)
treebe79a1512786c8eb7a5f849122d3967e3e00b9fb /lib/loader
parentd4440ff3ae9724921ea98b118777a3ef09699e51 (diff)
kconfig: dref export: do not use _ in dref keys
Diffstat (limited to 'lib/loader')
-rw-r--r--lib/loader/kconfig.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/loader/kconfig.py b/lib/loader/kconfig.py
index 0724a45..43d3c2f 100644
--- a/lib/loader/kconfig.py
+++ b/lib/loader/kconfig.py
@@ -157,10 +157,10 @@ class KConfigAttributes:
return {
"raw measurements/valid": len(self.configs),
"raw measurements/total": len(self.configs) + len(self.failures),
- "kconfig/num_features/total": len(self.param_names),
- "kconfig/num_features/bool": type_count["bool"],
- "kconfig/num_features/tristate": type_count["tristate"],
- "kconfig/num_features/string": type_count["string"],
- "kconfig/num_features/numeric": type_count["numeric"],
- "kconfig/num_features/enum": type_count["enum"],
+ "kconfig/features/total": len(self.param_names),
+ "kconfig/features/bool": type_count["bool"],
+ "kconfig/features/tristate": type_count["tristate"],
+ "kconfig/features/string": type_count["string"],
+ "kconfig/features/numeric": type_count["numeric"],
+ "kconfig/features/enum": type_count["enum"],
}