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

◆ test_lwpoint_to_latlon_assert_error()

static void test_lwpoint_to_latlon_assert_error ( char *  point_wkt,
const char *  format 
)
static

Definition at line 44 of file cu_print.c.

45{
46 LWPOINT * test_point = (LWPOINT*)lwgeom_from_wkt(point_wkt, LW_PARSER_CHECK_NONE);
48 char* tmp = lwpoint_to_latlon(test_point, format);
49 lwfree(tmp);
50 if (0 == strlen(cu_error_msg))
51 {
52 printf("\nAssert failed:\n\tFormat [%s] did not generate an error.\n", format);
53 CU_FAIL();
54 }
55 else
56 {
58 }
59 lwpoint_free(test_point);
60}
void cu_error_msg_reset()
char cu_error_msg[MAX_CUNIT_ERROR_LENGTH+1]
char * lwpoint_to_latlon(const LWPOINT *p, const char *format)
Definition lwprint.c:437
void lwpoint_free(LWPOINT *pt)
Definition lwpoint.c:213
#define LW_PARSER_CHECK_NONE
Definition liblwgeom.h:2149
void lwfree(void *mem)
Definition lwutil.c:248
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition lwin_wkt.c:940

References cu_error_msg, cu_error_msg_reset(), LW_PARSER_CHECK_NONE, lwfree(), lwgeom_from_wkt(), lwpoint_free(), and lwpoint_to_latlon().

Referenced by test_lwpoint_to_latlon_bad_formats().

Here is the call graph for this function:
Here is the caller graph for this function: