PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 61 of file raster/test/cunit/cu_tester.c.

62{
63 int index;
64 char *suite_name;
65 CU_pSuite suite_to_run;
66 char *test_name;
67 CU_pTest test_to_run;
68 CU_ErrorCode errCode = 0;
69 CU_pTestRegistry registry;
70 int num_run;
71 int num_failed;
72 PG_SuiteSetup *setupfunc = setupfuncs;
73
74 /* install the custom error handler */
76
84 );
85
86 /* initialize the CUnit test registry */
87 if (CUE_SUCCESS != CU_initialize_registry())
88 {
89 errCode = CU_get_error();
90 printf(" Error attempting to initialize registry: %d. See CUError.h for error code list.\n", errCode);
91 return errCode;
92 }
93
94 /* Register all the test suites. */
95 while ( *setupfunc )
96 {
97 (*setupfunc)();
98 setupfunc++;
99 }
100
101 /* Run all tests using the CUnit Basic interface */
102 CU_basic_set_mode(CU_BRM_VERBOSE);
103 if (argc <= 1)
104 {
105 errCode = CU_basic_run_tests();
106 }
107 else
108 {
109 /* NOTE: The cunit functions used here (CU_get_registry, CU_get_suite_by_name, and CU_get_test_by_name) are
110 * listed with the following warning: "Internal CUnit system functions. Should not be routinely called by users."
111 * However, there didn't seem to be any other way to get tests by name, so we're calling them. */
112 registry = CU_get_registry();
113 for (index = 1; index < argc; index++)
114 {
115 suite_name = argv[index];
116 test_name = NULL;
117 suite_to_run = CU_get_suite_by_name(suite_name, registry);
118 if (NULL == suite_to_run)
119 {
120 /* See if it's a test name instead of a suite name. */
121 suite_to_run = registry->pSuite;
122 while (suite_to_run != NULL)
123 {
124 test_to_run = CU_get_test_by_name(suite_name, suite_to_run);
125 if (test_to_run != NULL)
126 {
127 /* It was a test name. */
128 test_name = suite_name;
129 suite_name = suite_to_run->pName;
130 break;
131 }
132 suite_to_run = suite_to_run->pNext;
133 }
134 }
135 if (suite_to_run == NULL)
136 {
137 printf("\n'%s' does not appear to be either a suite name or a test name.\n\n", suite_name);
138 }
139 else
140 {
141 if (test_name != NULL)
142 {
143 /* Run only this test. */
144 printf("\nRunning test '%s' in suite '%s'.\n", test_name, suite_name);
145 /* This should be CU_basic_run_test, but that method is broken, see:
146 * https://sourceforge.net/tracker/?func=detail&aid=2851925&group_id=32992&atid=407088
147 * This one doesn't output anything for success, so we have to do it manually. */
148 errCode = CU_run_test(suite_to_run, test_to_run);
149 if (errCode != CUE_SUCCESS)
150 {
151 printf(" Error attempting to run tests: %d. See CUError.h for error code list.\n", errCode);
152 }
153 else
154 {
155 num_run = CU_get_number_of_asserts();
156 num_failed = CU_get_number_of_failures();
157 printf("\n %s - asserts - %3d passed, %3d failed, %3d total.\n\n",
158 (0 == num_failed ? "PASSED" : "FAILED"), (num_run - num_failed), num_failed, num_run);
159 }
160 }
161 else
162 {
163 /* Run all the tests in the suite. */
164 printf("\nRunning all tests in suite '%s'.\n", suite_name);
165 /* This should be CU_basic_run_suite, but that method is broken, see:
166 * https://sourceforge.net/tracker/?func=detail&aid=2851925&group_id=32992&atid=407088
167 * This one doesn't output anything for success, so we have to do it manually. */
168 errCode = CU_run_suite(suite_to_run);
169 if (errCode != CUE_SUCCESS)
170 {
171 printf(" Error attempting to run tests: %d. See CUError.h for error code list.\n", errCode);
172 }
173 else
174 {
175 num_run = CU_get_number_of_tests_run();
176 num_failed = CU_get_number_of_tests_failed();
177 printf("\n %s - tests - %3d passed, %3d failed, %3d total.\n",
178 (0 == num_failed ? "PASSED" : "FAILED"), (num_run - num_failed), num_failed, num_run);
179 num_run = CU_get_number_of_asserts();
180 num_failed = CU_get_number_of_failures();
181 printf(" - asserts - %3d passed, %3d failed, %3d total.\n\n",
182 (num_run - num_failed), num_failed, num_run);
183 }
184 }
185 }
186 }
187 /* Presumably if the CU_basic_run_[test|suite] functions worked, we wouldn't have to do this. */
188 CU_basic_show_failures(CU_get_failure_list());
189 printf("\n\n"); /* basic_show_failures leaves off line breaks. */
190 }
191 num_failed = CU_get_number_of_failures();
192 CU_cleanup_registry();
193 return num_failed;
194}
void(* PG_SuiteSetup)(void)
void(*) typedef void(*) voi lwgeom_set_handlers)(lwallocator allocator, lwreallocator reallocator, lwfreeor freeor, lwreporter errorreporter, lwreporter noticereporter)
Install custom memory management and error handling functions you want your application to use.
void * default_rt_allocator(size_t size)
The default memory/logging handlers installed by lwgeom_install_default_allocators()
Definition rt_context.c:47
void default_rt_deallocator(void *mem)
Definition rt_context.c:61
void * default_rt_reallocator(void *mem, size_t size)
Definition rt_context.c:54
void void void default_rt_info_handler(const char *fmt, va_list ap) __attribute__((format(printf
void rt_set_handlers(rt_allocator allocator, rt_reallocator reallocator, rt_deallocator deallocator, rt_message_handler error_handler, rt_message_handler info_handler, rt_message_handler warning_handler)
This function is called when the PostgreSQL backend is taking care of the memory and we want to use p...
Definition rt_context.c:159
void void default_rt_warning_handler(const char *fmt, va_list ap) __attribute__((format(printf
PG_SuiteSetup setupfuncs[]
static void cu_error_reporter(const char *fmt, va_list ap)
CUnit error handler Log message in a global var instead of printing in stderr.

References cu_error_reporter(), default_rt_allocator(), default_rt_deallocator(), default_rt_info_handler(), default_rt_reallocator(), default_rt_warning_handler(), rt_set_handlers(), and setupfuncs.

Here is the call graph for this function: