puts "OK: test9: profile_flush_to_file with no changes"
}
+proc test10 {} {
+ global wd verbose
+
+ # Regression test for #7863: multiply-specified subsections should
+ # be merged.
+ set p [profile_init_path $wd/test2.ini]
+ set x [profile_get_values $p {{test section 2} child_section2 child}]
+ if $verbose { puts "Read $x from profile" }
+ if ![string equal $x "slick harry {john\tb } ron"] {
+ puts stderr "Error: test10: Did not get expected merged children."
+ exit 1
+ }
+
+ set x [profile_get_string $p {test section 2} child_section2 chores]
+ if $verbose { puts "Read $x from profile" }
+ if ![string equal $x "cleaning"] {
+ puts stderr "Error: test10: Did not find expected chores."
+ exit 1
+ }
+}
+
test1
test2
test3
test7
test8
test9
+test10
exit 0
*
* Each node may represent either a relation or a section header.
*
- * A section header must have its value field set to 0, and may a one
+ * A section header must have its value field be null, and may have one
* or more child nodes, pointed to by first_child.
*
* A relation has as its value a pointer to allocated memory
return PROF_ADD_NOT_SECTION;
/*
- * Find the place to insert the new node. We look for the
- * place *after* the last match of the node name, since
+ * Find the place to insert the new node. If we are adding a subsection
+ * and already have a subsection with that name, merge them. Otherwise,
+ * we look for the place *after* the last match of the node name, since
* order matters.
*/
for (p=section->first_child, last = 0; p; last = p, p = p->next) {
int cmp;
cmp = strcmp(p->name, name);
- if (cmp > 0)
+ if (cmp > 0) {
break;
+ } else if (value == NULL && cmp == 0 &&
+ p->value == NULL && p->deleted != 1) {
+ /* Found duplicate subsection, so don't make a new one. */
+ *ret_node = p;
+ return 0;
+ }
}
retval = profile_create_node(name, value, &new);
if (retval)