test:validate: Handle new expected_failures Test argument

This commit is contained in:
Thibault Saunier 2016-09-09 08:52:32 -03:00
parent 4434392b2c
commit 8b4983daf1
2 changed files with 4 additions and 4 deletions

View file

@ -169,9 +169,9 @@ if build_gir
# FIXME: There must be a better way to do this
# Need to pass the include path to find gst/gst.h and gst/gstenumtypes.h (built)
ges_gir_extra_args += ['--cflags-begin',
'-I' + meson.current_source_dir() + '/..',
'-I' + meson.current_build_dir() + '/..',
'--cflags-end']
'-I' + meson.current_source_dir() + '/..',
'-I' + meson.current_build_dir() + '/..',
'--cflags-end']
endif
ges_gen_sources += [gnome.generate_gir(libges,
sources : ges_sources + ges_headers,

View file

@ -116,7 +116,7 @@ class XgesProjectDescriptor(MediaDescriptor):
class GESTest(GstValidateTest):
def __init__(self, classname, options, reporter, project, scenario=None,
combination=None):
combination=None, expected_failures=None):
super(GESTest, self).__init__(GES_LAUNCH_COMMAND, classname, options, reporter,
scenario=scenario)