diff options
Diffstat (limited to 'test/103_gendata_h48/gendata_h48_tests.c')
| -rw-r--r-- | test/103_gendata_h48/gendata_h48_tests.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/103_gendata_h48/gendata_h48_tests.c b/test/103_gendata_h48/gendata_h48_tests.c new file mode 100644 index 0000000..f0910cc --- /dev/null +++ b/test/103_gendata_h48/gendata_h48_tests.c | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | #include "../test.h" | ||
| 2 | |||
| 3 | #define MAXDEPTH 5 | ||
| 4 | #define COCSEPSIZE 1119792 | ||
| 5 | #define ETABLESIZE(h) (((3393 * 495 * 70) >> 1) << (size_t)(h)) | ||
| 6 | |||
| 7 | size_t gendata_h48(void *, uint8_t, uint8_t); | ||
| 8 | |||
| 9 | int main(void) { | ||
| 10 | char str[STRLENMAX]; | ||
| 11 | uint8_t h, i; | ||
| 12 | uint32_t *buf, *h48info; | ||
| 13 | size_t result; | ||
| 14 | |||
| 15 | fgets(str, STRLENMAX, stdin); | ||
| 16 | h = atoi(str); | ||
| 17 | buf = (uint32_t *)malloc(sizeof(uint32_t) * (60000000 << h)); | ||
| 18 | result = gendata_h48(buf, h, MAXDEPTH); | ||
| 19 | h48info = buf + (ETABLESIZE(h) + COCSEPSIZE) / 4; | ||
| 20 | |||
| 21 | printf("%zu\n\n", result); | ||
| 22 | |||
| 23 | printf("cocsepdata:\n"); | ||
| 24 | printf("Classes: %" PRIu32 "\n", buf[COCSEPSIZE/4-12]); | ||
| 25 | printf("Max value: %" PRIu32 "\n", buf[COCSEPSIZE/4-11]); | ||
| 26 | for (i = 0; i < 10; i++) | ||
| 27 | printf("%" PRIu32 ": %" PRIu32 "\n", i, buf[COCSEPSIZE/4-10+i]); | ||
| 28 | |||
| 29 | printf("\nh48:\n"); | ||
| 30 | for (i = 0; i < MAXDEPTH+1; i++) | ||
| 31 | printf("%" PRIu32 ": %" PRIu32 "\n", i, h48info[i+1]); | ||
| 32 | |||
| 33 | free(buf); | ||
| 34 | return 0; | ||
| 35 | } | ||
