From: aszh07 <mail2szahir@gmail.com>
To: openembedded-core@lists.openembedded.org, zahir.basha@kpit.com
Subject: [OE-core][master][PATCH] alsa-lib: enabling ptest for alsa-lib component
Date: Wed, 16 Oct 2024 22:46:52 +0530 [thread overview]
Message-ID: <20241016171652.5138-1-mail2szahir@gmail.com> (raw)
This change adds ptest for alsa-lib.
1) Removed the test suite execution 'make check-TESTS' call using 'sed' command.
2) Compiled the test directory source code using "oe_runmake check" command.
3) Copied all the required binaries into PTEST_PATH using do_install_ptest()
function.
Signed-off-by: aszh07 <mail2szahir@gmail.com>
---
.../distro/include/ptest-packagelists.inc | 1 +
.../alsa/alsa-lib_1.2.12.bb | 23 +++++++++++++++++--
meta/recipes-multimedia/alsa/files/run-ptest | 14 +++++++++++
3 files changed, 36 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-multimedia/alsa/files/run-ptest
diff --git a/meta/conf/distro/include/ptest-packagelists.inc b/meta/conf/distro/include/ptest-packagelists.inc
index 4a48188562..f0ffe11347 100644
--- a/meta/conf/distro/include/ptest-packagelists.inc
+++ b/meta/conf/distro/include/ptest-packagelists.inc
@@ -5,6 +5,7 @@
#
PTESTS_FAST = "\
acl \
+ alsa-lib \
apr-util \
attr \
babeltrace \
diff --git a/meta/recipes-multimedia/alsa/alsa-lib_1.2.12.bb b/meta/recipes-multimedia/alsa/alsa-lib_1.2.12.bb
index d9136052b7..1aa19dac6d 100644
--- a/meta/recipes-multimedia/alsa/alsa-lib_1.2.12.bb
+++ b/meta/recipes-multimedia/alsa/alsa-lib_1.2.12.bb
@@ -9,10 +9,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7 \
file://src/socket.c;md5=285675b45e83f571c6a957fe4ab79c93;beginline=9;endline=24 \
"
-SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2"
+SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2 \
+ file://run-ptest \
+ "
SRC_URI[sha256sum] = "4868cd908627279da5a634f468701625be8cc251d84262c7e5b6a218391ad0d2"
-inherit autotools pkgconfig
+inherit autotools pkgconfig ptest
EXTRA_OECONF += " \
${@bb.utils.contains('TARGET_FPU', 'soft', '--with-softfloat', '', d)} \
@@ -42,3 +44,20 @@ RREPLACES:alsa-conf = "alsa-conf-base"
RCONFLICTS:alsa-conf = "alsa-conf-base"
BBCLASSEXTEND = "native nativesdk"
+
+do_compile_ptest() {
+ sed -i 's/^.*$(MAKE) $(AM_MAKEFLAGS) check-TESTS.*$/ /' ${S}/test/lsb/Makefile.in
+ oe_runmake check
+}
+
+do_install_ptest:append() {
+ for f in control client_event_filter namehint
+ do
+ install -m 0755 "${B}/test/.libs/$f" "${D}${PTEST_PATH}";
+ done
+
+ for f in config midi_event
+ do
+ install -m 0755 "${B}/test/lsb/.libs/$f" "${D}${PTEST_PATH}";
+ done
+}
diff --git a/meta/recipes-multimedia/alsa/files/run-ptest b/meta/recipes-multimedia/alsa/files/run-ptest
new file mode 100644
index 0000000000..8fbf9f140a
--- /dev/null
+++ b/meta/recipes-multimedia/alsa/files/run-ptest
@@ -0,0 +1,14 @@
+#!/bin/sh
+set -eux
+
+for t in config control midi_event client_event_filter client_event_filter
+do
+ if "./$t" > "alsa-lib_$t.log" 2>&1
+ then
+ echo "PASS: $t"
+ else
+ echo "FAIL: $t"
+ cat "alsa-lib_$t.log"
+ fi
+ rm "alsa-lib_$t.log"
+done
--
2.17.1
next reply other threads:[~2024-10-16 17:17 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-16 17:16 aszh07 [this message]
2024-10-16 17:44 ` [OE-core][master][PATCH] alsa-lib: enabling ptest for alsa-lib component Khem Raj
2024-10-16 19:30 ` Alexander Kanavin
-- strict thread matches above, loose matches on Subject: below --
2024-02-12 13:46 [OE-core][master][PATCH] alsa-lib: Enabling " aszh07
2024-02-12 13:56 ` Alexander Kanavin
2024-02-12 14:37 ` Ross Burton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241016171652.5138-1-mail2szahir@gmail.com \
--to=mail2szahir@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=zahir.basha@kpit.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox