| 45 | #ifdef DS_TEST |
| 46 | #include <stdio.h> |
| 47 | int main(int argc, char **argv) |
| 48 | { |
| 49 | stbds_unit_tests(); |
| 50 | churn(0,100,1); |
| 51 | churn(3,7,50000); |
| 52 | churn(3,15,50000); |
| 53 | churn(16, 48, 25000); |
| 54 | churn(10, 15, 25000); |
| 55 | churn(200,500, 5000); |
| 56 | churn(2000,5000, 500); |
| 57 | churn(20000,50000, 50); |
| 58 | printf("Ok!"); |
| 59 | return 0; |
| 60 | } |
| 61 | #endif |
| 62 | |
| 63 | #ifdef DS_STATS |
nothing calls this directly
no test coverage detected