parent
7acba73b4b
commit
89d64b94d1
@ -1 +1,2 @@
|
||||
/lilv-0.5.0.tar.bz2
|
||||
/lilv-0.14.0.tar.bz2
|
||||
|
@ -1,27 +0,0 @@
|
||||
Index: test/lilv_test.c
|
||||
===================================================================
|
||||
--- test/lilv_test.c (revision 3609)
|
||||
+++ test/lilv_test.c (revision 3610)
|
||||
@@ -757,8 +757,16 @@
|
||||
TEST_ASSERT(sp1);
|
||||
|
||||
- TEST_ASSERT(!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Sin"));
|
||||
- TEST_ASSERT(lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 3);
|
||||
- TEST_ASSERT(!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Cos"));
|
||||
- TEST_ASSERT(lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 4);
|
||||
+ TEST_ASSERT(
|
||||
+ ((!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Sin")
|
||||
+ && lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 3)
|
||||
+ &&
|
||||
+ (!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Cos")
|
||||
+ && lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 4))
|
||||
+ ||
|
||||
+ ((!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Cos")
|
||||
+ && lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 4)
|
||||
+ &&
|
||||
+ (!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Sin")
|
||||
+ && lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 3)));
|
||||
|
||||
LilvNode* homepage_p = lilv_new_uri(world, "http://usefulinc.com/ns/doap#homepage");
|
||||
LILV_API
|
||||
uint32_t
|
@ -1,16 +0,0 @@
|
||||
diff -Nurp lilv-0.5.0.orig/test/lilv_test.c lilv-0.5.0/test/lilv_test.c
|
||||
--- lilv-0.5.0.orig/test/lilv_test.c 2011-09-29 04:26:23.000000000 +0200
|
||||
+++ lilv-0.5.0/test/lilv_test.c 2012-03-02 23:58:09.546071126 +0100
|
||||
@@ -524,9 +524,9 @@ test_plugin(void)
|
||||
free(manifest_uri);
|
||||
free(data_uri);
|
||||
|
||||
- float mins[1];
|
||||
- float maxs[1];
|
||||
- float defs[1];
|
||||
+ float mins[3];
|
||||
+ float maxs[3];
|
||||
+ float defs[3];
|
||||
lilv_plugin_get_port_ranges_float(plug, mins, maxs, defs);
|
||||
TEST_ASSERT(mins[0] == -1.0f);
|
||||
TEST_ASSERT(maxs[0] == 1.0f);
|
Loading…
Reference in new issue