| 404 | } |
| 405 | |
| 406 | static void parity_teardown(void) { |
| 407 | if (g_seq_gbuf) { |
| 408 | cbm_gbuf_free(g_seq_gbuf); |
| 409 | g_seq_gbuf = NULL; |
| 410 | } |
| 411 | if (g_par_gbuf) { |
| 412 | cbm_gbuf_free(g_par_gbuf); |
| 413 | g_par_gbuf = NULL; |
| 414 | } |
| 415 | teardown_parallel_repo(); |
| 416 | g_parity_setup_done = 0; |
| 417 | } |
| 418 | |
| 419 | /* Node count parity */ |
| 420 | TEST(parallel_node_count) { |
no test coverage detected