mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-23 15:54:21 -09:00
support/testing: add lame runtime test
Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
4a285b160f
commit
73e8652b57
@@ -1897,6 +1897,7 @@ F: support/testing/tests/package/test_kmod.py
|
||||
F: support/testing/tests/package/test_kmod/
|
||||
F: support/testing/tests/package/test_kmscube.py
|
||||
F: support/testing/tests/package/test_kmscube/
|
||||
F: support/testing/tests/package/test_lame.py
|
||||
F: support/testing/tests/package/test_less.py
|
||||
F: support/testing/tests/package/test_libcamera.py
|
||||
F: support/testing/tests/package/test_libcamera/
|
||||
|
||||
20
support/testing/tests/package/test_lame.py
Normal file
20
support/testing/tests/package/test_lame.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from tests.package.test_audio_codec_base import TestAudioCodecBase
|
||||
|
||||
|
||||
class TestLame(TestAudioCodecBase):
|
||||
__test__ = True
|
||||
config = TestAudioCodecBase.config + \
|
||||
"""
|
||||
BR2_PACKAGE_LAME=y
|
||||
"""
|
||||
encoded_file = "encoded.mp3"
|
||||
|
||||
def encode_test(self, input_filename):
|
||||
cmd = "lame --quiet"
|
||||
cmd += f" {input_filename} {self.encoded_file}"
|
||||
self.assertRunOk(cmd)
|
||||
|
||||
def decode_test(self, output_filename):
|
||||
cmd = "lame --quiet --decode"
|
||||
cmd += f" {self.encoded_file} {output_filename}"
|
||||
self.assertRunOk(cmd)
|
||||
Reference in New Issue
Block a user