* Destroys a test. * * @param[in] test */
| 54 | * @param[in] test |
| 55 | */ |
| 56 | static void test_destroy(test_t *test) { |
| 57 | if (test->buf != NULL) { |
| 58 | free(test->buf); |
| 59 | test->buf = NULL; |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Checks if there's a chunk boundary at the given position. |