| 349 | } |
| 350 | |
| 351 | int main(void) { |
| 352 | if (siphash_test() == 0) { |
| 353 | printf("SipHash test: OK\n"); |
| 354 | return 0; |
| 355 | } else { |
| 356 | printf("SipHash test: FAILED\n"); |
| 357 | return 1; |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | #endif |
nothing calls this directly
no test coverage detected