summaryrefslogtreecommitdiffstats
path: root/test/test_get_symbol.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_get_symbol.c')
-rw-r--r--test/test_get_symbol.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_get_symbol.c b/test/test_get_symbol.c
index 06707c1..5337c63 100644
--- a/test/test_get_symbol.c
+++ b/test/test_get_symbol.c
@@ -40,10 +40,13 @@ main(void)
LilvTestEnv* const env = lilv_test_env_new();
LilvWorld* const world = env->world;
- if (start_bundle(env, manifest_ttl, plugin_ttl)) {
+ if (create_bundle(env, "get_symbol.lv2", manifest_ttl, plugin_ttl)) {
return 1;
}
+ lilv_world_load_specifications(env->world);
+ lilv_world_load_bundle(env->world, env->test_bundle_uri);
+
LilvNode* plug_sym = lilv_world_get_symbol(world, env->plugin1_uri);
LilvNode* path = lilv_new_uri(world, "http://example.org/foo");
LilvNode* path_sym = lilv_world_get_symbol(world, path);