validateflow: Print some indication that the flow checking is happening

This commit is contained in:
Thibault Saunier 2019-02-07 15:42:06 -03:00
parent 4467c9925d
commit 5a2e2d5001

View file

@ -380,6 +380,9 @@ runner_stopping (GstValidateRunner * runner, ValidateFlowOverride * flow)
lines_actual = g_strsplit (contents, "\n", 0);
}
gst_validate_printf (flow, "Checking that flow %s matches expected flow %s\n",
flow->expectations_file_path, flow->actual_results_file_path);
for (i = 0; lines_expected[i] && lines_actual[i]; i++) {
if (strcmp (lines_expected[i], lines_actual[i])) {
show_mismatch_error (flow, lines_expected, lines_actual, i);