summaryrefslogtreecommitdiffstats
path: root/test/lib_descriptor.lv2/test_lib_descriptor.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib_descriptor.lv2/test_lib_descriptor.c')
-rw-r--r--test/lib_descriptor.lv2/test_lib_descriptor.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/lib_descriptor.lv2/test_lib_descriptor.c b/test/lib_descriptor.lv2/test_lib_descriptor.c
index 3409ef2..ff14763 100644
--- a/test/lib_descriptor.lv2/test_lib_descriptor.c
+++ b/test/lib_descriptor.lv2/test_lib_descriptor.c
@@ -28,6 +28,7 @@ main(int argc, char** argv)
lilv_world_load_bundle(world, bundle_uri);
free(abs_bundle);
serd_node_free(&bundle);
+ lilv_node_free(bundle_uri);
LilvNode* plugin_uri = lilv_new_uri(world, PLUGIN_URI);
const LilvPlugins* plugins = lilv_world_get_all_plugins(world);
@@ -36,15 +37,21 @@ main(int argc, char** argv)
LilvInstance* instance = lilv_plugin_instantiate(plugin, 48000.0, NULL);
TEST_ASSERT(instance);
+ lilv_instance_free(instance);
LilvNode* eg_blob = lilv_new_uri(world, "http://example.org/blob");
LilvNode* blob = lilv_world_get(world, plugin_uri, eg_blob, NULL);
TEST_ASSERT(lilv_node_is_literal(blob));
+ lilv_node_free(blob);
+ lilv_node_free(eg_blob);
LilvNode* eg_junk = lilv_new_uri(world, "http://example.org/junk");
LilvNode* junk = lilv_world_get(world, plugin_uri, eg_junk, NULL);
TEST_ASSERT(lilv_node_is_literal(junk));
+ lilv_node_free(junk);
+ lilv_node_free(eg_junk);
+ lilv_node_free(plugin_uri);
lilv_world_free(world);
return 0;