| 498 | } while (0); |
| 499 | |
| 500 | static void init_test(void) |
| 501 | { |
| 502 | _aspace_bst_init(&aspace); |
| 503 | |
| 504 | dataset = malloc(loop_count * sizeof(*dataset)); |
| 505 | assert(dataset); |
| 506 | |
| 507 | _varea_buf = malloc(loop_count * sizeof(*_varea_buf)); |
| 508 | assert(_varea_buf); |
| 509 | |
| 510 | init_random_keys(dataset, loop_count, 0xabcdabcd); |
| 511 | } |
| 512 | |
| 513 | static void insert_test(void) |
| 514 | { |
no test coverage detected