Files
poky/meta/packages/clutter/clutter/enable_tests.patch
Richard Purdie 739895ccb5 clutter: update patch
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3080 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-11-06 19:11:30 +00:00

53 lines
2.2 KiB
Diff

---
tests/Makefile.am | 7 ++++++-
tests/test-actors.c | 2 +-
tests/test-text.c | 2 +-
3 files changed, 8 insertions(+), 3 deletions(-)
Index: clutter/tests/Makefile.am
===================================================================
--- clutter.orig/tests/Makefile.am 2007-11-06 12:29:17.000000000 +0000
+++ clutter/tests/Makefile.am 2007-11-06 12:30:11.000000000 +0000
@@ -1,4 +1,4 @@
-noinst_PROGRAMS = test-textures test-events test-offscreen test-scale \
+bin_PROGRAMS = test-textures test-events test-offscreen test-scale \
test-actors test-behave test-text test-entry test-project \
test-boxes test-perspective test-rotate test-depth \
test-threads test-timeline test-score test-script
@@ -26,4 +26,9 @@ test_timeline_SOURCES = test-timeline.c
test_score_SOURCES = test-score.c
test_script_SOURCES = test-script.c
+test_textdir = $(pkgdatadir)
+test_text_DATA = test-text.c
+test_actorsdir = $(pkgdatadir)
+test_actors_DATA = redhand.png
+
EXTRA_DIST = redhand.png test-script.json
Index: clutter/tests/test-actors.c
===================================================================
--- clutter.orig/tests/test-actors.c 2007-11-06 12:29:17.000000000 +0000
+++ clutter/tests/test-actors.c 2007-11-06 12:29:21.000000000 +0000
@@ -143,7 +143,7 @@ main (int argc, char *argv[])
stage = clutter_stage_get_default ();
clutter_actor_set_size (stage, 800, 600);
- pixbuf = gdk_pixbuf_new_from_file ("redhand.png", NULL);
+ pixbuf = gdk_pixbuf_new_from_file ("/usr/share/clutter/redhand.png", NULL);
if (!pixbuf)
g_error("pixbuf load failed");
Index: clutter/tests/test-text.c
===================================================================
--- clutter.orig/tests/test-text.c 2007-11-06 12:29:17.000000000 +0000
+++ clutter/tests/test-text.c 2007-11-06 12:29:21.000000000 +0000
@@ -27,7 +27,7 @@ main (int argc, char *argv[])
stage = clutter_stage_get_default ();
- if (!g_file_get_contents ("test-text.c", &text, &size, NULL))
+ if (!g_file_get_contents ("/usr/share/clutter/test-text.c", &text, &size, NULL))
g_error("g_file_get_contents() of test-text.c failed");
clutter_actor_set_size (stage, 800, 600);