From 830c41e97938bd4bbf7422718bbc90df750b9d78 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 11 Jan 2021 12:07:16 +0100 Subject: Use unique test bundle names so tests can run in parallel --- test/test_project.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/test_project.c') diff --git a/test/test_project.c b/test/test_project.c index b75f056..7da42bd 100644 --- a/test/test_project.c +++ b/test/test_project.c @@ -69,10 +69,13 @@ main(void) LilvTestEnv* const env = lilv_test_env_new(); LilvWorld* const world = env->world; - if (start_bundle(env, SIMPLE_MANIFEST_TTL, plugin_ttl)) { + if (create_bundle(env, "project.lv2", SIMPLE_MANIFEST_TTL, plugin_ttl)) { return 1; } + lilv_world_load_specifications(env->world); + lilv_world_load_bundle(env->world, env->test_bundle_uri); + const LilvPlugins* plugins = lilv_world_get_all_plugins(world); const LilvPlugin* plug = lilv_plugins_get_by_uri(plugins, env->plugin1_uri); assert(plug); -- cgit v1.2.1