diff src/testcase.c @ 5:9c331ec9e210

SVG path is partially supported
author Thinker K.F. Li <thinker@branda.to>
date Sat, 26 Jul 2008 01:37:35 +0800
parents b5c0162ccf69
children 79e9edf4c00a
line wrap: on
line diff
--- a/src/testcase.c	Fri Jul 25 11:42:37 2008 +0800
+++ b/src/testcase.c	Sat Jul 26 01:37:35 2008 +0800
@@ -1,6 +1,8 @@
 #include <CUnit/Basic.h>
 
 extern CU_pSuite get_coord_suite(void);
+extern CU_pSuite get_geo_suite(void);
+extern CU_pSuite get_shape_path_suite(void);
 
 int
 main(int argc, char * const argv[]) {
@@ -10,6 +12,8 @@
 	return CU_get_error();
 
     get_coord_suite();
+    get_geo_suite();
+    get_shape_path_suite();
 
     CU_basic_set_mode(CU_BRM_VERBOSE);
     CU_basic_run_tests();