diff --git a/examples/Makefile.am b/examples/Makefile.am index c85c3d53e..bf203bd12 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -7,6 +7,7 @@ all_examples = \ constraints \ drag-action \ drop-action \ + easing-modes \ flow-layout \ threads diff --git a/tests/interactive/test-transitions.c b/examples/easing-modes.c similarity index 97% rename from tests/interactive/test-transitions.c rename to examples/easing-modes.c index dd41c4f1e..5393e7216 100644 --- a/tests/interactive/test-transitions.c +++ b/examples/easing-modes.c @@ -1,5 +1,4 @@ #include -#include #include /* all the easing modes provided by Clutter */ @@ -180,8 +179,8 @@ static GOptionEntry test_easing_entries[] = { { NULL } }; -G_MODULE_EXPORT int -test_transitions_main (int argc, char *argv[]) +int +main (int argc, char *argv[]) { ClutterActor *stage, *rect, *label; gchar *text; @@ -233,9 +232,3 @@ test_transitions_main (int argc, char *argv[]) return EXIT_SUCCESS; } - -G_MODULE_EXPORT const char * -test_transitions_describe (void) -{ - return "Visualize all easing modes provided by Clutter"; -} diff --git a/tests/interactive/Makefile.am b/tests/interactive/Makefile.am index ba56ec29d..426d2eaa2 100644 --- a/tests/interactive/Makefile.am +++ b/tests/interactive/Makefile.am @@ -47,7 +47,6 @@ UNIT_TESTS = \ test-path-constraint.c \ test-state-script.c \ test-devices.c \ - test-transitions.c \ test-content.c \ test-keyframe-transition.c \ test-scroll-actor.c