validateflow: Print some indication that the flow checking is happening
authorThibault Saunier <tsaunier@igalia.com>
Thu, 7 Feb 2019 18:42:06 +0000 (15:42 -0300)
committerThibault Saunier <tsaunier@igalia.com>
Mon, 11 Feb 2019 11:34:36 +0000 (08:34 -0300)
validate/plugins/flow/gstvalidateflow.c

index b5dc99f..706d552 100644 (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);