| 1064 | }; |
| 1065 | |
| 1066 | int main () { |
| 1067 | int i, j; |
| 1068 | GenerateCRC32Table (); |
| 1069 | |
| 1070 | for (j=0; tests[j].name != nullptr; j++) { |
| 1071 | for (i=0; i < 3; i++) { |
| 1072 | double res = test (tests[j].hash); |
| 1073 | if (tests[j].res == 0.0 || tests[j].res > res) tests[j].res = res; |
| 1074 | } |
| 1075 | printf ("%s:%8.4fs\n", tests[j].name, tests[j].res); |
| 1076 | } |
| 1077 | |
| 1078 | return 0; |
| 1079 | } |
nothing calls this directly
no test coverage detected