| 104 | } |
| 105 | |
| 106 | int main(void) |
| 107 | { |
| 108 | if (!test_full_input()) { |
| 109 | printf("test_full_input failed\n"); |
| 110 | return 1; |
| 111 | } |
| 112 | |
| 113 | if (!test_stream_input()) { |
| 114 | printf("test_stream_input failed\n"); |
| 115 | return 1; |
| 116 | } |
| 117 | |
| 118 | if (!test_invalid_hex_input()) { |
| 119 | printf("test_invalid_hex_input failed\n"); |
| 120 | return 1; |
| 121 | } |
| 122 | |
| 123 | if (!test_invalid_surrogate_input()) { |
| 124 | printf("test_invalid_surrogate_input failed\n"); |
| 125 | return 1; |
| 126 | } |
| 127 | |
| 128 | printf("json unicode checks passed\n"); |
| 129 | return 0; |
| 130 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…