This fixes a memory leak detected by ASan in the test_engines test,
which now runs without failures
- missing Perl includes patch #2262
- smyrna: incorrect tokenization in frmobjectui.c:set_attr_object_type #2259
- [Dot] Record shape+UTF+" | "=Eats spaces. #925
+- Memory leak in osage
## [5.0.0] – 2022-07-07
node_t *n;
for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
+ for (edge_t *e = agfstout(g, n); e; e = agnxtout(g, e)) {
+ gv_cleanup_edge(e);
+ }
gv_cleanup_node(n);
}
cleanup_graphs(g);
CREATE_TEST(AGraph_construction)
CREATE_TEST(engines)
-set_tests_properties(test_engines PROPERTIES WILL_FAIL true)
CREATE_TEST(GVContext_construction)
CREATE_TEST(GVContext_render_svg)
CREATE_TEST(GVLayout_construction)