summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-01-11 18:13:38 +0100
committerDavid Robillard <d@drobilla.net>2019-01-11 18:13:38 +0100
commit95c84bb4c984cdd88ac52cd794d9d0e05bbda1a0 (patch)
treef85eaf6cf7c0bf0539f1432b6fae443ec5e2dd2e
parentbb5d979410bacfd2ad9730b204babcd9753bfd9a (diff)
downloadlilv-95c84bb4c984cdd88ac52cd794d9d0e05bbda1a0.tar.gz
lilv-95c84bb4c984cdd88ac52cd794d9d0e05bbda1a0.tar.bz2
lilv-95c84bb4c984cdd88ac52cd794d9d0e05bbda1a0.zip
Cleanup: Fix some long lines
-rw-r--r--test/lilv_test.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/lilv_test.c b/test/lilv_test.c
index b55f3e9..5d5b5eb 100644
--- a/test/lilv_test.c
+++ b/test/lilv_test.c
@@ -1804,7 +1804,8 @@ test_state(void)
// Get yet another instance state
LilvState* fstate3 = lilv_state_new_from_instance(
- plugin, instance, &map, file_dir, copy_dir, link_dir, "state/fstate3.lv2",
+ plugin, instance, &map,
+ file_dir, copy_dir, link_dir, "state/fstate3.lv2",
get_port_value, world, 0, ffeatures);
// Should be different
@@ -1816,8 +1817,8 @@ test_state(void)
TEST_ASSERT(!ret);
// Load state from directory
- LilvState* fstate4 = lilv_state_new_from_file(world, &map, NULL,
- "state/fstate.lv2/fstate.ttl");
+ LilvState* fstate4 = lilv_state_new_from_file(
+ world, &map, NULL, "state/fstate.lv2/fstate.ttl");
TEST_ASSERT(lilv_state_equals(fstate, fstate4)); // Round trip accuracy
// Restore instance state to loaded state
@@ -1836,8 +1837,8 @@ test_state(void)
TEST_ASSERT(!ret);
// Reload it and ensure it's identical to the other loaded version
- LilvState* fstate6 = lilv_state_new_from_file(world, &map, NULL,
- "state/fstate6.lv2/fstate6.ttl");
+ LilvState* fstate6 = lilv_state_new_from_file(
+ world, &map, NULL, "state/fstate6.lv2/fstate6.ttl");
TEST_ASSERT(lilv_state_equals(fstate4, fstate6));
// Run, changing rec file (without changing size)
@@ -1856,8 +1857,8 @@ test_state(void)
TEST_ASSERT(!ret);
// Reload it and ensure it's changed
- LilvState* fstate72 = lilv_state_new_from_file(world, &map, NULL,
- "state/fstate7.lv2/fstate7.ttl");
+ LilvState* fstate72 = lilv_state_new_from_file(
+ world, &map, NULL, "state/fstate7.lv2/fstate7.ttl");
TEST_ASSERT(lilv_state_equals(fstate72, fstate7));
TEST_ASSERT(!lilv_state_equals(fstate6, fstate72));