mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
validate: tools: Fix path to media folder
This commit is contained in:
parent
07b968a4f6
commit
e75e7df0ac
1 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@ from utils import printc, path2url, DEFAULT_MAIN_DIR, launch_command, Colors
|
||||||
|
|
||||||
|
|
||||||
QA_ASSETS = "gst-qa-assets"
|
QA_ASSETS = "gst-qa-assets"
|
||||||
|
MEDIAS_FOLDER = "medias"
|
||||||
DEFAULT_GST_QA_ASSETS_REPO = "git://people.freedesktop.org/~tsaunier/gst-qa-assets/"
|
DEFAULT_GST_QA_ASSETS_REPO = "git://people.freedesktop.org/~tsaunier/gst-qa-assets/"
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
@ -156,7 +157,7 @@ def main():
|
||||||
if options.clone_dir is None:
|
if options.clone_dir is None:
|
||||||
options.clone_dir = os.path.join(DEFAULT_MAIN_DIR, QA_ASSETS)
|
options.clone_dir = os.path.join(DEFAULT_MAIN_DIR, QA_ASSETS)
|
||||||
if options.paths is None:
|
if options.paths is None:
|
||||||
options.paths = options.clone_dir
|
options.paths = os.path.join(options.clone_dir, MEDIAS_FOLDER)
|
||||||
|
|
||||||
tests_launcher.set_settings(options, args)
|
tests_launcher.set_settings(options, args)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue