| 224 | } |
| 225 | |
| 226 | static void parity_teardown(void) { |
| 227 | if (g_seq_gbuf) { |
| 228 | cbm_gbuf_free(g_seq_gbuf); |
| 229 | g_seq_gbuf = NULL; |
| 230 | } |
| 231 | if (g_par_gbuf) { |
| 232 | cbm_gbuf_free(g_par_gbuf); |
| 233 | g_par_gbuf = NULL; |
| 234 | } |
| 235 | teardown_parallel_repo(); |
| 236 | g_parity_setup_done = 0; |
| 237 | } |
| 238 | |
| 239 | /* Node count parity */ |
| 240 | TEST(parallel_node_count) { |
no test coverage detected