validate: launcher: Cleanup and rename apps to avoid '-' in their name

This commit is contained in:
Thibault Saunier 2014-09-06 11:38:38 +02:00
parent 7838f3ebae
commit b843ead1f8
3 changed files with 7 additions and 4 deletions

View file

@ -3,5 +3,5 @@ appsdir = $(libdir)/gst-validate-launcher/python/launcher/apps/
SUBDIRS = validate SUBDIRS = validate
apps_PYTHON = \ apps_PYTHON = \
ges-launch.py \ geslaunch.py \
gst-validate.py gstvalidate.py

View file

@ -24,7 +24,8 @@ import subprocess
import utils import utils
from urllib import unquote from urllib import unquote
import xml.etree.ElementTree as ET 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 GES_DURATION_TOLERANCE = utils.GST_SECOND / 2

View file

@ -17,6 +17,7 @@
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, # Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
# Boston, MA 02110-1301, USA. # Boston, MA 02110-1301, USA.
import os import os
import sys
import time import time
import urlparse import urlparse
import subprocess import subprocess
@ -25,7 +26,8 @@ from loggable import Loggable
from baseclasses import GstValidateTest, TestsManager, Test, \ from baseclasses import GstValidateTest, TestsManager, Test, \
ScenarioManager, NamedDic, GstValidateTestsGenerator, \ ScenarioManager, NamedDic, GstValidateTestsGenerator, \
GstValidateMediaDescriptor GstValidateMediaDescriptor, GstValidateEncodingTestInterface, \
GstValidateBaseTestManager
from utils import path2url, DEFAULT_TIMEOUT, which, \ from utils import path2url, DEFAULT_TIMEOUT, which, \
GST_SECOND, Result, Protocols GST_SECOND, Result, Protocols