Changes in dict.c [0138478:1cf3f8d3]
Legend:
- Unmodified
- Added
- Removed
-
dict.c
r0138478 r1cf3f8d3 152 152 char *av="aval", *bv="bval", *cv="cval", *dv="dval"; 153 153 154 printf(" BEGIN testing owl_dict\n");154 printf("# BEGIN testing owl_dict\n"); 155 155 FAIL_UNLESS("create", 0==owl_dict_create(&d)); 156 156 FAIL_UNLESS("insert b", 0==owl_dict_insert_element(&d, "b", (void*)bv, owl_dict_noop_free)); … … 179 179 owl_dict_free_all(&d, NULL); 180 180 181 if (numfailed) printf("*** WARNING: failures encountered with owl_dict\n");182 printf(" END testing owl_dict (%d failures)\n", numfailed);181 // if (numfailed) printf("*** WARNING: failures encountered with owl_dict\n"); 182 printf("# END testing owl_dict (%d failures)\n", numfailed); 183 183 return(numfailed); 184 184 }
Note: See TracChangeset
for help on using the changeset viewer.