1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2018, Olivier MATZ <zer0@droids-corp.org>
11 #include <ecoli_string.h>
12 #include <ecoli_malloc.h>
13 #include <ecoli_dict.h>
14 #include <ecoli_node.h>
15 #include <ecoli_log.h>
16 #include <ecoli_test.h>
17 #include <ecoli_config.h>
19 EC_LOG_TYPE_REGISTER(config);
21 const char *ec_config_reserved_keys[] = {
29 __ec_config_dump(FILE *out, const char *key, const struct ec_config *config,
32 ec_config_dict_validate(const struct ec_dict *dict,
33 const struct ec_config_schema *schema);
36 ec_config_key_is_reserved(const char *name)
40 for (i = 0; i < EC_COUNT_OF(ec_config_reserved_keys); i++) {
41 if (!strcmp(name, ec_config_reserved_keys[i]))
47 /* return ec_value type as a string */
49 ec_config_type_str(enum ec_config_type type)
52 case EC_CONFIG_TYPE_BOOL: return "bool";
53 case EC_CONFIG_TYPE_INT64: return "int64";
54 case EC_CONFIG_TYPE_UINT64: return "uint64";
55 case EC_CONFIG_TYPE_STRING: return "string";
56 case EC_CONFIG_TYPE_NODE: return "node";
57 case EC_CONFIG_TYPE_LIST: return "list";
58 case EC_CONFIG_TYPE_DICT: return "dict";
59 default: return "unknown";
64 ec_config_schema_len(const struct ec_config_schema *schema)
70 for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++)
76 __ec_config_schema_validate(const struct ec_config_schema *schema,
77 enum ec_config_type type)
82 if (type == EC_CONFIG_TYPE_LIST) {
83 if (schema[0].key != NULL) {
85 EC_LOG(EC_LOG_ERR, "list schema key must be NULL\n");
88 } else if (type == EC_CONFIG_TYPE_DICT) {
89 for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++) {
90 if (schema[i].key == NULL) {
93 "dict schema key should not be NULL\n");
99 EC_LOG(EC_LOG_ERR, "invalid schema type\n");
103 for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++) {
104 if (schema[i].key != NULL &&
105 ec_config_key_is_reserved(schema[i].key)) {
108 "key name <%s> is reserved\n", schema[i].key);
111 /* check for duplicate name if more than one element */
112 for (j = i + 1; schema[j].type != EC_CONFIG_TYPE_NONE; j++) {
113 if (!strcmp(schema[i].key, schema[j].key)) {
116 "duplicate key <%s> in schema\n",
122 switch (schema[i].type) {
123 case EC_CONFIG_TYPE_BOOL:
124 case EC_CONFIG_TYPE_INT64:
125 case EC_CONFIG_TYPE_UINT64:
126 case EC_CONFIG_TYPE_STRING:
127 case EC_CONFIG_TYPE_NODE:
128 if (schema[i].subschema != NULL || ec_config_schema_len(
129 schema[i].subschema) != 0) {
132 "key <%s> should not have subtype/subschema\n",
137 case EC_CONFIG_TYPE_LIST:
138 if (schema[i].subschema == NULL || ec_config_schema_len(
139 schema[i].subschema) != 1) {
142 "key <%s> must have subschema of length 1\n",
147 case EC_CONFIG_TYPE_DICT:
148 if (schema[i].subschema == NULL || ec_config_schema_len(
149 schema[i].subschema) == 0) {
152 "key <%s> must have subschema\n",
158 EC_LOG(EC_LOG_ERR, "invalid type for key <%s>\n",
164 if (schema[i].subschema == NULL)
167 ret = __ec_config_schema_validate(schema[i].subschema,
170 EC_LOG(EC_LOG_ERR, "cannot parse subschema %s%s\n",
171 schema[i].key ? "key=" : "",
172 schema[i].key ? : "");
181 ec_config_schema_validate(const struct ec_config_schema *schema)
183 return __ec_config_schema_validate(schema, EC_CONFIG_TYPE_DICT);
187 __ec_config_schema_dump(FILE *out, const struct ec_config_schema *schema,
192 for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++) {
193 fprintf(out, "%*s" "%s%s%stype=%s desc='%s'\n",
195 schema[i].key ? "key=": "",
196 schema[i].key ? : "",
197 schema[i].key ? " ": "",
198 ec_config_type_str(schema[i].type),
200 if (schema[i].subschema == NULL)
202 __ec_config_schema_dump(out, schema[i].subschema,
208 ec_config_schema_dump(FILE *out, const struct ec_config_schema *schema)
210 fprintf(out, "------------------- schema dump:\n");
212 if (schema == NULL) {
213 fprintf(out, "no schema\n");
217 __ec_config_schema_dump(out, schema, 0);
220 enum ec_config_type ec_config_get_type(const struct ec_config *config)
226 ec_config_bool(bool boolean)
228 struct ec_config *value = NULL;
230 value = ec_calloc(1, sizeof(*value));
234 value->type = EC_CONFIG_TYPE_BOOL;
235 value->boolean = boolean;
241 ec_config_i64(int64_t i64)
243 struct ec_config *value = NULL;
245 value = ec_calloc(1, sizeof(*value));
249 value->type = EC_CONFIG_TYPE_INT64;
256 ec_config_u64(uint64_t u64)
258 struct ec_config *value = NULL;
260 value = ec_calloc(1, sizeof(*value));
264 value->type = EC_CONFIG_TYPE_UINT64;
270 /* duplicate string */
272 ec_config_string(const char *string)
274 struct ec_config *value = NULL;
280 s = ec_strdup(string);
284 value = ec_calloc(1, sizeof(*value));
288 value->type = EC_CONFIG_TYPE_STRING;
299 /* "consume" the node */
301 ec_config_node(struct ec_node *node)
303 struct ec_config *value = NULL;
308 value = ec_calloc(1, sizeof(*value));
312 value->type = EC_CONFIG_TYPE_NODE;
326 struct ec_config *value = NULL;
327 struct ec_dict *dict = NULL;
333 value = ec_calloc(1, sizeof(*value));
337 value->type = EC_CONFIG_TYPE_DICT;
351 struct ec_config *value = NULL;
353 value = ec_calloc(1, sizeof(*value));
357 value->type = EC_CONFIG_TYPE_LIST;
358 TAILQ_INIT(&value->list);
363 ssize_t ec_config_count(const struct ec_config *config)
365 const struct ec_config *child;
368 switch (config->type) {
369 case EC_CONFIG_TYPE_LIST:
371 TAILQ_FOREACH(child, &config->list, next)
374 case EC_CONFIG_TYPE_DICT:
382 const struct ec_config_schema *
383 ec_config_schema_lookup(const struct ec_config_schema *schema,
388 for (i = 0; schema[i].type != EC_CONFIG_TYPE_NONE; i++) {
389 if (!strcmp(key, schema[i].key))
398 ec_config_schema_type(const struct ec_config_schema *schema_elt)
400 return schema_elt->type;
403 const struct ec_config_schema *
404 ec_config_schema_sub(const struct ec_config_schema *schema_elt)
406 return schema_elt->subschema;
410 ec_config_free(struct ec_config *value)
415 switch (value->type) {
416 case EC_CONFIG_TYPE_STRING:
417 ec_free(value->string);
419 case EC_CONFIG_TYPE_NODE:
420 ec_node_free(value->node);
422 case EC_CONFIG_TYPE_LIST:
423 while (!TAILQ_EMPTY(&value->list)) {
425 v = TAILQ_FIRST(&value->list);
426 TAILQ_REMOVE(&value->list, v, next);
430 case EC_CONFIG_TYPE_DICT:
431 ec_dict_free(value->dict);
441 ec_config_list_cmp(const struct ec_config_list *list1,
442 const struct ec_config_list *list2)
444 const struct ec_config *v1, *v2;
446 for (v1 = TAILQ_FIRST(list1), v2 = TAILQ_FIRST(list2);
447 v1 != NULL && v2 != NULL;
448 v1 = TAILQ_NEXT(v1, next), v2 = TAILQ_NEXT(v2, next)) {
449 if (ec_config_cmp(v1, v2))
452 if (v1 != NULL || v2 != NULL)
458 /* XXX -> ec_dict_cmp() */
460 ec_config_dict_cmp(const struct ec_dict *d1,
461 const struct ec_dict *d2)
463 const struct ec_config *v1, *v2;
464 struct ec_dict_elt_ref *iter = NULL;
467 if (ec_dict_len(d1) != ec_dict_len(d2))
470 for (iter = ec_dict_iter(d1);
472 iter = ec_dict_iter_next(iter)) {
473 key = ec_dict_iter_get_key(iter);
474 v1 = ec_dict_iter_get_val(iter);
475 v2 = ec_dict_get(d2, key);
477 if (ec_config_cmp(v1, v2))
488 ec_config_cmp(const struct ec_config *value1,
489 const struct ec_config *value2)
491 if (value1 == NULL || value2 == NULL) {
496 if (value1->type != value2->type)
499 switch (value1->type) {
500 case EC_CONFIG_TYPE_BOOL:
501 if (value1->boolean == value2->boolean)
504 case EC_CONFIG_TYPE_INT64:
505 if (value1->i64 == value2->i64)
508 case EC_CONFIG_TYPE_UINT64:
509 if (value1->u64 == value2->u64)
512 case EC_CONFIG_TYPE_STRING:
513 if (!strcmp(value1->string, value2->string))
516 case EC_CONFIG_TYPE_NODE:
517 if (value1->node == value2->node)
520 case EC_CONFIG_TYPE_LIST:
521 return ec_config_list_cmp(&value1->list, &value2->list);
522 case EC_CONFIG_TYPE_DICT:
523 return ec_config_dict_cmp(value1->dict, value2->dict);
532 ec_config_list_validate(const struct ec_config_list *list,
533 const struct ec_config_schema *sch)
535 const struct ec_config *value;
537 TAILQ_FOREACH(value, list, next) {
538 if (value->type != sch->type) {
543 if (value->type == EC_CONFIG_TYPE_LIST) {
544 if (ec_config_list_validate(&value->list,
547 } else if (value->type == EC_CONFIG_TYPE_DICT) {
548 if (ec_config_dict_validate(value->dict,
558 ec_config_dict_validate(const struct ec_dict *dict,
559 const struct ec_config_schema *schema)
561 const struct ec_config *value;
562 struct ec_dict_elt_ref *iter = NULL;
563 const struct ec_config_schema *sch;
566 for (iter = ec_dict_iter(dict);
568 iter = ec_dict_iter_next(iter)) {
570 key = ec_dict_iter_get_key(iter);
571 value = ec_dict_iter_get_val(iter);
572 sch = ec_config_schema_lookup(schema, key);
573 if (sch == NULL || sch->type != value->type) {
577 if (value->type == EC_CONFIG_TYPE_LIST) {
578 if (ec_config_list_validate(&value->list,
581 } else if (value->type == EC_CONFIG_TYPE_DICT) {
582 if (ec_config_dict_validate(value->dict,
595 ec_config_validate(const struct ec_config *dict,
596 const struct ec_config_schema *schema)
598 if (dict->type != EC_CONFIG_TYPE_DICT || schema == NULL) {
603 if (ec_config_dict_validate(dict->dict, schema) < 0)
613 ec_config_dict_get(const struct ec_config *config, const char *key)
615 if (config == NULL) {
620 if (config->type != EC_CONFIG_TYPE_DICT) {
625 return ec_dict_get(config->dict, key);
629 ec_config_list_first(struct ec_config *list)
631 if (list == NULL || list->type != EC_CONFIG_TYPE_LIST) {
636 return TAILQ_FIRST(&list->list);
640 ec_config_list_next(struct ec_config *list, struct ec_config *config)
643 return TAILQ_NEXT(config, next);
646 /* value is consumed */
647 int ec_config_dict_set(struct ec_config *config, const char *key,
648 struct ec_config *value)
650 void (*free_cb)(struct ec_config *) = ec_config_free;
652 if (config == NULL || key == NULL || value == NULL) {
656 if (config->type != EC_CONFIG_TYPE_DICT) {
661 return ec_dict_set(config->dict, key, value,
662 (void (*)(void *))free_cb);
665 ec_config_free(value);
669 int ec_config_dict_del(struct ec_config *config, const char *key)
671 if (config == NULL || key == NULL) {
675 if (config->type != EC_CONFIG_TYPE_DICT) {
680 return ec_dict_del(config->dict, key);
683 /* value is consumed */
685 ec_config_list_add(struct ec_config *list,
686 struct ec_config *value)
688 if (list == NULL || list->type != EC_CONFIG_TYPE_LIST || value == NULL) {
693 TAILQ_INSERT_TAIL(&list->list, value, next);
698 ec_config_free(value);
702 int ec_config_list_del(struct ec_config *list, struct ec_config *config)
704 if (list == NULL || list->type != EC_CONFIG_TYPE_LIST) {
709 TAILQ_REMOVE(&list->list, config, next);
710 ec_config_free(config);
714 static struct ec_config *
715 ec_config_list_dup(const struct ec_config_list *list)
717 struct ec_config *dup = NULL, *v, *value;
719 dup = ec_config_list();
723 TAILQ_FOREACH(v, list, next) {
724 value = ec_config_dup(v);
727 if (ec_config_list_add(dup, value) < 0)
738 static struct ec_config *
739 ec_config_dict_dup(const struct ec_dict *dict)
741 struct ec_config *dup = NULL, *value;
742 struct ec_dict_elt_ref *iter = NULL;
745 dup = ec_config_dict();
749 for (iter = ec_dict_iter(dict);
751 iter = ec_dict_iter_next(iter)) {
752 key = ec_dict_iter_get_key(iter);
753 value = ec_config_dup(ec_dict_iter_get_val(iter));
756 if (ec_config_dict_set(dup, key, value) < 0)
768 ec_config_dup(const struct ec_config *config)
770 if (config == NULL) {
775 switch (config->type) {
776 case EC_CONFIG_TYPE_BOOL:
777 return ec_config_bool(config->boolean);
778 case EC_CONFIG_TYPE_INT64:
779 return ec_config_i64(config->i64);
780 case EC_CONFIG_TYPE_UINT64:
781 return ec_config_u64(config->u64);
782 case EC_CONFIG_TYPE_STRING:
783 return ec_config_string(config->string);
784 case EC_CONFIG_TYPE_NODE:
785 return ec_config_node(ec_node_clone(config->node));
786 case EC_CONFIG_TYPE_LIST:
787 return ec_config_list_dup(&config->list);
788 case EC_CONFIG_TYPE_DICT:
789 return ec_config_dict_dup(config->dict);
799 ec_config_list_dump(FILE *out, const char *key,
800 const struct ec_config_list *list, size_t indent)
802 const struct ec_config *v;
804 fprintf(out, "%*s" "%s%s%stype=list\n", (int)indent * 4, "",
809 TAILQ_FOREACH(v, list, next) {
810 if (__ec_config_dump(out, NULL, v, indent + 1) < 0)
818 ec_config_dict_dump(FILE *out, const char *key, const struct ec_dict *dict,
821 const struct ec_config *value;
822 struct ec_dict_elt_ref *iter;
825 fprintf(out, "%*s" "%s%s%stype=dict\n", (int)indent * 4, "",
830 for (iter = ec_dict_iter(dict);
832 iter = ec_dict_iter_next(iter)) {
833 k = ec_dict_iter_get_key(iter);
834 value = ec_dict_iter_get_val(iter);
835 if (__ec_config_dump(out, k, value, indent + 1) < 0)
845 __ec_config_dump(FILE *out, const char *key, const struct ec_config *value,
848 char *val_str = NULL;
850 switch (value->type) {
851 case EC_CONFIG_TYPE_BOOL:
853 ec_asprintf(&val_str, "true");
855 ec_asprintf(&val_str, "false");
857 case EC_CONFIG_TYPE_INT64:
858 ec_asprintf(&val_str, "%"PRIu64, value->u64);
860 case EC_CONFIG_TYPE_UINT64:
861 ec_asprintf(&val_str, "%"PRIi64, value->i64);
863 case EC_CONFIG_TYPE_STRING:
864 ec_asprintf(&val_str, "%s", value->string);
866 case EC_CONFIG_TYPE_NODE:
867 ec_asprintf(&val_str, "%p", value->node);
869 case EC_CONFIG_TYPE_LIST:
870 return ec_config_list_dump(out, key, &value->list, indent);
871 case EC_CONFIG_TYPE_DICT:
872 return ec_config_dict_dump(out, key, value->dict, indent);
878 /* errno is already set on error */
882 fprintf(out, "%*s" "%s%s%stype=%s val=%s\n", (int)indent * 4, "",
886 ec_config_type_str(value->type), val_str);
897 ec_config_dump(FILE *out, const struct ec_config *config)
899 fprintf(out, "------------------- config dump:\n");
901 if (config == NULL) {
902 fprintf(out, "no config\n");
906 if (__ec_config_dump(out, NULL, config, 0) < 0)
907 fprintf(out, "error while dumping\n");
910 /* LCOV_EXCL_START */
911 static const struct ec_config_schema sch_intlist_elt[] = {
913 .desc = "This is a description for int",
914 .type = EC_CONFIG_TYPE_INT64,
917 .type = EC_CONFIG_TYPE_NONE,
921 static const struct ec_config_schema sch_dict[] = {
924 .desc = "This is a description for int",
925 .type = EC_CONFIG_TYPE_INT64,
929 .desc = "This is a description for int2",
930 .type = EC_CONFIG_TYPE_INT64,
933 .type = EC_CONFIG_TYPE_NONE,
937 static const struct ec_config_schema sch_dictlist_elt[] = {
939 .desc = "This is a description for dict",
940 .type = EC_CONFIG_TYPE_DICT,
941 .subschema = sch_dict,
944 .type = EC_CONFIG_TYPE_NONE,
948 static const struct ec_config_schema sch_baseconfig[] = {
951 .desc = "This is a description for bool",
952 .type = EC_CONFIG_TYPE_BOOL,
956 .desc = "This is a description for int",
957 .type = EC_CONFIG_TYPE_INT64,
961 .desc = "This is a description for string",
962 .type = EC_CONFIG_TYPE_STRING,
966 .desc = "This is a description for node",
967 .type = EC_CONFIG_TYPE_NODE,
971 .desc = "This is a description for list",
972 .type = EC_CONFIG_TYPE_LIST,
973 .subschema = sch_intlist_elt,
976 .key = "my_dictlist",
977 .desc = "This is a description for list",
978 .type = EC_CONFIG_TYPE_LIST,
979 .subschema = sch_dictlist_elt,
982 .type = EC_CONFIG_TYPE_NONE,
986 static int ec_config_testcase(void)
988 struct ec_node *node = NULL;
989 struct ec_dict *dict = NULL;
990 const struct ec_config *value = NULL;
991 struct ec_config *config = NULL, *config2 = NULL;
992 struct ec_config *list = NULL, *subconfig = NULL;
993 struct ec_config *list_, *config_;
997 testres |= EC_TEST_CHECK(ec_config_key_is_reserved("id"),
998 "'id' should be reserved");
999 testres |= EC_TEST_CHECK(!ec_config_key_is_reserved("foo"),
1000 "'foo' should not be reserved");
1002 node = ec_node("empty", EC_NO_ID);
1006 if (ec_config_schema_validate(sch_baseconfig) < 0) {
1007 EC_LOG(EC_LOG_ERR, "invalid config schema\n");
1011 ec_config_schema_dump(stdout, sch_baseconfig);
1013 config = ec_config_dict();
1017 ret = ec_config_dict_set(config, "my_bool", ec_config_bool(true));
1018 testres |= EC_TEST_CHECK(ret == 0, "cannot set boolean");
1019 value = ec_config_dict_get(config, "my_bool");
1020 testres |= EC_TEST_CHECK(
1022 value->type == EC_CONFIG_TYPE_BOOL &&
1023 value->boolean == true,
1024 "unexpected boolean value");
1026 ret = ec_config_dict_set(config, "my_int", ec_config_i64(1234));
1027 testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1028 value = ec_config_dict_get(config, "my_int");
1029 testres |= EC_TEST_CHECK(
1031 value->type == EC_CONFIG_TYPE_INT64 &&
1033 "unexpected int value");
1035 testres |= EC_TEST_CHECK(
1036 ec_config_validate(config, sch_baseconfig) == 0,
1037 "cannot validate config\n");
1039 ret = ec_config_dict_set(config, "my_string", ec_config_string("toto"));
1040 testres |= EC_TEST_CHECK(ret == 0, "cannot set string");
1041 value = ec_config_dict_get(config, "my_string");
1042 testres |= EC_TEST_CHECK(
1044 value->type == EC_CONFIG_TYPE_STRING &&
1045 !strcmp(value->string, "toto"),
1046 "unexpected string value");
1048 list = ec_config_list();
1052 subconfig = ec_config_dict();
1053 if (subconfig == NULL)
1056 ret = ec_config_dict_set(subconfig, "my_int", ec_config_i64(1));
1057 testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1058 value = ec_config_dict_get(subconfig, "my_int");
1059 testres |= EC_TEST_CHECK(
1061 value->type == EC_CONFIG_TYPE_INT64 &&
1063 "unexpected int value");
1065 ret = ec_config_dict_set(subconfig, "my_int2", ec_config_i64(2));
1066 testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1067 value = ec_config_dict_get(subconfig, "my_int2");
1068 testres |= EC_TEST_CHECK(
1070 value->type == EC_CONFIG_TYPE_INT64 &&
1072 "unexpected int value");
1074 testres |= EC_TEST_CHECK(
1075 ec_config_validate(subconfig, sch_dict) == 0,
1076 "cannot validate subconfig\n");
1078 ret = ec_config_list_add(list, subconfig);
1079 subconfig = NULL; /* freed */
1080 testres |= EC_TEST_CHECK(ret == 0, "cannot add in list");
1082 subconfig = ec_config_dict();
1083 if (subconfig == NULL)
1086 ret = ec_config_dict_set(subconfig, "my_int", ec_config_i64(3));
1087 testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1088 value = ec_config_dict_get(subconfig, "my_int");
1089 testres |= EC_TEST_CHECK(
1091 value->type == EC_CONFIG_TYPE_INT64 &&
1093 "unexpected int value");
1095 ret = ec_config_dict_set(subconfig, "my_int2", ec_config_i64(4));
1096 testres |= EC_TEST_CHECK(ret == 0, "cannot set int");
1097 value = ec_config_dict_get(subconfig, "my_int2");
1098 testres |= EC_TEST_CHECK(
1100 value->type == EC_CONFIG_TYPE_INT64 &&
1102 "unexpected int value");
1104 testres |= EC_TEST_CHECK(
1105 ec_config_validate(subconfig, sch_dict) == 0,
1106 "cannot validate subconfig\n");
1108 ret = ec_config_list_add(list, subconfig);
1109 subconfig = NULL; /* freed */
1110 testres |= EC_TEST_CHECK(ret == 0, "cannot add in list");
1112 ret = ec_config_dict_set(config, "my_dictlist", list);
1114 testres |= EC_TEST_CHECK(ret == 0, "cannot set list");
1116 testres |= EC_TEST_CHECK(
1117 ec_config_validate(config, sch_baseconfig) == 0,
1118 "cannot validate config\n");
1120 list_ = ec_config_dict_get(config, "my_dictlist");
1121 for (config_ = ec_config_list_first(list_); config_ != NULL;
1122 config_ = ec_config_list_next(list_, config_)) {
1123 ec_config_dump(stdout, config_);
1126 ec_config_dump(stdout, config);
1128 config2 = ec_config_dup(config);
1129 testres |= EC_TEST_CHECK(config2 != NULL, "cannot duplicate config");
1130 testres |= EC_TEST_CHECK(
1131 ec_config_cmp(config, config2) == 0,
1132 "fail to compare config");
1133 ec_config_free(config2);
1136 /* remove the first element */
1137 ec_config_list_del(list_, ec_config_list_first(list_));
1138 testres |= EC_TEST_CHECK(
1139 ec_config_validate(config, sch_baseconfig) == 0,
1140 "cannot validate config\n");
1142 ec_config_dump(stdout, config);
1144 ec_config_free(list);
1145 ec_config_free(subconfig);
1146 ec_config_free(config);
1153 ec_config_free(list);
1154 ec_config_free(subconfig);
1155 ec_config_free(config);
1156 ec_config_free(config2);
1162 /* LCOV_EXCL_STOP */
1164 static struct ec_test ec_config_test = {
1166 .test = ec_config_testcase,
1169 EC_TEST_REGISTER(ec_config_test);