From: Guillaume Desmottes Date: Sat, 10 Oct 2015 09:50:58 +0000 (+0100) Subject: validate: fix loading of full path scenario X-Git-Tag: 1.19.3~491^2~1112 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5067cee05bb1ae69e2a3bebf0afc11db598d3bc9;p=platform%2Fupstream%2Fgstreamer.git validate: fix loading of full path scenario 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 --- diff --git a/validate/gst/validate/gst-validate-scenario.c b/validate/gst/validate/gst-validate-scenario.c index 5ff5d1b..e620649 100644 --- a/validate/gst/validate/gst-validate-scenario.c +++ b/validate/gst/validate/gst-validate-scenario.c @@ -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; }