validate:launcher: Disable racy HLS tests
+ Add need-clock-synk to switch_audio_track_while_paused as it relies on the clock sync to pause and then display subtitles
This commit is contained in:
parent
bab8a4c3bb
commit
702992cf7a
@ -1,4 +1,4 @@
|
|||||||
description, summary="Change audio track while pipeline is paused", min-audio-track=2, duration=6.0
|
description, summary="Change audio track while pipeline is paused", min-audio-track=2, duration=6.0, need-clock-sync=true
|
||||||
pause, playback_time=1.0;
|
pause, playback_time=1.0;
|
||||||
|
|
||||||
# Wait so that humans can see the pipeline is paused
|
# Wait so that humans can see the pipeline is paused
|
||||||
|
@ -99,13 +99,19 @@ def register_default_encoding_formats(self):
|
|||||||
|
|
||||||
def register_default_blacklist(self):
|
def register_default_blacklist(self):
|
||||||
self.set_default_blacklist([
|
self.set_default_blacklist([
|
||||||
|
# hls known issues
|
||||||
("validate.hls.playback.fast_forward.*",
|
("validate.hls.playback.fast_forward.*",
|
||||||
"https://bugzilla.gnome.org/show_bug.cgi?id=698155"),
|
"https://bugzilla.gnome.org/show_bug.cgi?id=698155"),
|
||||||
("validate.hls.playback.seek_with_stop.*",
|
("validate.hls.playback.seek_with_stop.*",
|
||||||
"https://bugzilla.gnome.org/show_bug.cgi?id=723268"),
|
"https://bugzilla.gnome.org/show_bug.cgi?id=723268"),
|
||||||
("validate.hls.playback.reverse_playback.*",
|
("validate.hls.playback.reverse_playback.*",
|
||||||
"https://bugzilla.gnome.org/show_bug.cgi?id=702595"),
|
"https://bugzilla.gnome.org/show_bug.cgi?id=702595"),
|
||||||
("validate.hls.*scrub_forward_seeking.*", "This is not stable enough for now."),
|
("validate.hls.*scrub_forward_seeking.*",
|
||||||
|
"https://bugzilla.gnome.org/show_bug.cgi?id=606382"),
|
||||||
|
("validate.hls.*seek_backward.*",
|
||||||
|
"https://bugzilla.gnome.org/show_bug.cgi?id=606382"),
|
||||||
|
("validate.hls.*seek_forward.*",
|
||||||
|
"https://bugzilla.gnome.org/show_bug.cgi?id=606382"),
|
||||||
|
|
||||||
# Matroska/WEBM known issues:
|
# Matroska/WEBM known issues:
|
||||||
("validate.*.reverse_playback.*webm$",
|
("validate.*.reverse_playback.*webm$",
|
||||||
|
@ -656,8 +656,8 @@ class TestsManager(Loggable):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
if test.duration > 0 and int(self.options.long_limit) < int(test.duration):
|
if test.duration > 0 and int(self.options.long_limit) < int(test.duration):
|
||||||
self.info("Not activating test as it duration (%d) is superior"
|
self.info("Not activating %s as its duration (%d) is superior"
|
||||||
" than the long limit (%d)" % (test.duration,
|
" than the long limit (%d)" % (test, test.duration,
|
||||||
int(self.options.long_limit)))
|
int(self.options.long_limit)))
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user