- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
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.')
|