validate: fix loading of full path scenario
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Sat, 10 Oct 2015 09:50:58 +0000 (10:50 +0100)
committerThibault Saunier <tsaunier@gnome.org>
Sat, 10 Oct 2015 09:50:58 +0000 (10:50 +0100)
Summary:
We were checking if the path was a full one but was using the
scenario_name instead of this path when trying to load the scenario.

Depends on D346

Reviewers: thiblahute

Reviewed By: thiblahute

Differential Revision: https://phabricator.freedesktop.org/D348

validate/gst/validate/gst-validate-scenario.c

index 5ff5d1b..e620649 100644 (file)
@@ -2322,7 +2322,7 @@ gst_validate_scenario_load (GstValidateScenario * scenario,
     if (g_file_test (scenarios[i], G_FILE_TEST_IS_REGULAR)) {
       GST_DEBUG_OBJECT (scenario, "Scenario: %s is a full path to a scenario "
           "trying to load it", scenarios[i]);
-      if ((ret = _load_scenario_file (scenario, scenario_name, &is_config)))
+      if ((ret = _load_scenario_file (scenario, scenarios[i], &is_config)))
         goto check_scenario;
     }