mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
validate: launcher: Cleanup and rename apps to avoid '-' in their name
This commit is contained in:
parent
7838f3ebae
commit
b843ead1f8
3 changed files with 7 additions and 4 deletions
|
@ -3,5 +3,5 @@ appsdir = $(libdir)/gst-validate-launcher/python/launcher/apps/
|
|||
SUBDIRS = validate
|
||||
|
||||
apps_PYTHON = \
|
||||
ges-launch.py \
|
||||
gst-validate.py
|
||||
geslaunch.py \
|
||||
gstvalidate.py
|
||||
|
|
|
@ -24,7 +24,8 @@ import subprocess
|
|||
import utils
|
||||
from urllib import unquote
|
||||
import xml.etree.ElementTree as ET
|
||||
from baseclasses import GstValidateTest, TestsManager, ScenarioManager, MediaFormatCombination
|
||||
from baseclasses import GstValidateTest, TestsManager, ScenarioManager, MediaFormatCombination, \
|
||||
MediaDescriptor, GstValidateEncodingTestInterface
|
||||
|
||||
GES_DURATION_TOLERANCE = utils.GST_SECOND / 2
|
||||
|
|
@ -17,6 +17,7 @@
|
|||
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import urlparse
|
||||
import subprocess
|
||||
|
@ -25,7 +26,8 @@ from loggable import Loggable
|
|||
|
||||
from baseclasses import GstValidateTest, TestsManager, Test, \
|
||||
ScenarioManager, NamedDic, GstValidateTestsGenerator, \
|
||||
GstValidateMediaDescriptor
|
||||
GstValidateMediaDescriptor, GstValidateEncodingTestInterface, \
|
||||
GstValidateBaseTestManager
|
||||
|
||||
from utils import path2url, DEFAULT_TIMEOUT, which, \
|
||||
GST_SECOND, Result, Protocols
|
Loading…
Reference in a new issue