mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
test: Handle cJSON_PrintPreallocated return values correctly
This commit is contained in:
parent
84b48121bb
commit
d992cd46e6
4
test.c
4
test.c
@ -123,7 +123,7 @@ static int print_preallocated(cJSON *root)
|
||||
}
|
||||
|
||||
/* Print to buffer */
|
||||
if (cJSON_PrintPreallocated(root, buf, len, 1) != 0) {
|
||||
if (!cJSON_PrintPreallocated(root, buf, len, 1)) {
|
||||
printf("cJSON_PrintPreallocated failed!\n");
|
||||
if (strcmp(out, buf) != 0) {
|
||||
printf("cJSON_PrintPreallocated not the same as cJSON_Print!\n");
|
||||
@ -140,7 +140,7 @@ static int print_preallocated(cJSON *root)
|
||||
printf("%s\n", buf);
|
||||
|
||||
/* force it to fail */
|
||||
if (cJSON_PrintPreallocated(root, buf_fail, len_fail, 1) == 0) {
|
||||
if (cJSON_PrintPreallocated(root, buf_fail, len_fail, 1)) {
|
||||
printf("cJSON_PrintPreallocated failed to show error with insufficient memory!\n");
|
||||
printf("cJSON_Print result:\n%s\n", out);
|
||||
printf("cJSON_PrintPreallocated result:\n%s\n", buf_fail);
|
||||
|
Loading…
Reference in New Issue
Block a user