mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
validateflow: Print some indication that the flow checking is happening
This commit is contained in:
parent
4467c9925d
commit
5a2e2d5001
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue