From: Behdad Esfahbod Date: Mon, 11 Apr 2011 23:43:51 +0000 (-0400) Subject: [test] Actually hook up hb_script_t tests X-Git-Tag: submit/2.0alpha-wayland/20121130.004132~9^2~381 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9385caa8a693df0f06a511a71de9aa407637097c;p=profile%2Fivi%2Forg.tizen.video-player.git [test] Actually hook up hb_script_t tests I really shall find a way to automate the test enumeration. Otherwise it's too easy to add a test and wrongly hook it up. Did it twice today. --- diff --git a/test/test-types.c b/test/test-types.c index 15221a8..4a542fc 100644 --- a/test/test-types.c +++ b/test/test-types.c @@ -152,14 +152,14 @@ test_types_language (void) } int -main (int argc, char **argv) +main (int argc, char **argv) { g_test_init (&argc, &argv, NULL); g_test_add_func ("/types/int", test_types_int); g_test_add_func ("/types/direction", test_types_direction); g_test_add_func ("/types/tag", test_types_tag); - g_test_add_func ("/types/script", test_types_tag); + g_test_add_func ("/types/script", test_types_script); g_test_add_func ("/types/language", test_types_language); return g_test_run();