Skip to content

Commit

Permalink
fixup! Show how many pending failure cases are there in the interacti…
Browse files Browse the repository at this point in the history
…ve mode of rz-test
  • Loading branch information
PeiweiHu committed Jan 9, 2024
1 parent 907f475 commit 355cee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binrz/rz-test/rz-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ static void interact(RzTestState *state) {
printf("#####################\n\n");
char *name = rz_test_test_name(result->test);
if (name) {
printf(Color_RED "[XX]" Color_RESET " %s " Color_YELLOW "%s" Color_RESET " (No. %d/%zu)\n", result->test->path, name, cnt, rz_pvector_len(&failed_results));
printf(Color_RED "[XX]" Color_RESET " %s " Color_YELLOW "%s" Color_RESET " (%d/%zu)\n", result->test->path, name, cnt, rz_pvector_len(&failed_results));
free(name);
}
print_result_diff(&state->run_config, result);
Expand Down

0 comments on commit 355cee9

Please sign in to comment.