mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
play: tests: Refactor to use new Message bus API
Instead of relying on an extra GMainLoop, the messages are poped from the player bus and handled synchronously. This should avoid flaky behaviors. Fixes #608 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2061>
This commit is contained in:
parent
19d57dcfa5
commit
3eec2f4be8
3 changed files with 653 additions and 728 deletions
|
@ -1,5 +1,5 @@
|
|||
option('gst_player_tests', type: 'boolean', value: false,
|
||||
description: 'Enable GstPlayer tests that need network access')
|
||||
option('gst_play_tests', type: 'boolean', value: false,
|
||||
description: 'Enable GstPlay tests that need network access')
|
||||
|
||||
# Feature options for plugins without external deps
|
||||
option('accurip', type : 'feature', value : 'auto')
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -15,7 +15,7 @@ exif_dep = dependency('libexif', version : '>= 0.6.16', required : false)
|
|||
# Since nalutils API is internal, need to build it again
|
||||
nalutils_dep = gstcodecparsers_dep.partial_dependency (compile_args: true, includes: true)
|
||||
|
||||
enable_gst_player_tests = get_option('gst_player_tests')
|
||||
enable_gst_play_tests = get_option('gst_play_tests')
|
||||
|
||||
# name, condition when to skip the test and extra dependencies
|
||||
base_tests = [
|
||||
|
@ -69,7 +69,7 @@ base_tests = [
|
|||
[['libs/mpegts.c'], false, [gstmpegts_dep]],
|
||||
[['libs/mpegvideoparser.c'], false, [gstcodecparsers_dep]],
|
||||
[['libs/planaraudioadapter.c'], false, [gstbadaudio_dep]],
|
||||
[['libs/player.c'], not enable_gst_player_tests, [gstplayer_dep]],
|
||||
[['libs/play.c'], not enable_gst_play_tests, [gstplay_dep]],
|
||||
[['libs/vc1parser.c'], false, [gstcodecparsers_dep]],
|
||||
[['libs/vp8parser.c'], false, [gstcodecparsers_dep]],
|
||||
[['libs/vp9parser.c'], false, [gstcodecparsers_dep]],
|
||||
|
@ -229,6 +229,6 @@ if have_orcc and orc_test_dep.found()
|
|||
endforeach
|
||||
endif
|
||||
|
||||
if enable_gst_player_tests
|
||||
if enable_gst_play_tests
|
||||
subdir ('media')
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue