mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 09:16:36 +01:00
Where there isn't a copyright statement, add one to make it explicit. Also add license identifiers as MIT if there isn't one. (From OE-Core rev: bb731d1f3d2a1d50ec0aed864dbca54cf795b040) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
760 B
Python
21 lines
760 B
Python
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
from oeqa.runtime.case import OERuntimeTestCase
|
|
from oeqa.runtime.decorator.package import OEHasPackage
|
|
|
|
class GstreamerCliTest(OERuntimeTestCase):
|
|
|
|
@OEHasPackage(['gstreamer1.0'])
|
|
def test_gst_inspect_can_list_all_plugins(self):
|
|
status, output = self.target.run('gst-inspect-1.0')
|
|
self.assertEqual(status, 0, 'gst-inspect-1.0 does not appear to be running.')
|
|
|
|
@OEHasPackage(['gstreamer1.0'])
|
|
def test_gst_launch_can_create_video_pipeline(self):
|
|
status, output = self.target.run('gst-launch-1.0 -v fakesrc silent=false num-buffers=3 ! fakesink silent=false')
|
|
self.assertEqual(status, 0, 'gst-launch-1.0 does not appear to be running.')
|