From patchwork Wed Nov 21 15:23:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [2/4] New recipe: ptest-runner Date: Wed, 21 Nov 2012 15:23:09 -0000 From: =?utf-8?q?Bj=C3=B6rn_Stenberg_=3Cbjst=40enea=2Ecom=3E?= X-Patchwork-Id: 39409 Message-Id: <1353511391-60570-3-git-send-email-bjst@enea.com> To: This recipe installs a simple shell script which searches for all installed ptests on the rootfs and runs each test in sequence. Signed-off-by: Björn Stenberg --- meta/conf/bitbake.conf | 2 +- .../ptest-runner/files/ptest-runner | 16 ++++++++++++++++ .../ptest-runner/ptest-runner_1.0.bb | 17 +++++++++++++++++ 3 files changed, 34 insertions(+), 1 deletions(-) create mode 100644 meta/recipes-support/ptest-runner/files/ptest-runner create mode 100644 meta/recipes-support/ptest-runner/ptest-runner_1.0.bb diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 783ca37..64014d3 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -225,7 +225,7 @@ This package contains ELF symbols and related sources for debugging purposes." SUMMARY_${PN}-ptest ?= "${SUMMARY} - Package test files" DESCRIPTION_${PN}-ptest ?= "${DESCRIPTION} \ -This package contains test directory with the name ${PTEST_NAME} for package test purposes." +This package contains a test directory ${PTEST_PATH} for package test purposes." SUMMARY_${PN}-dev ?= "${SUMMARY} - Development files" DESCRIPTION_${PN}-dev ?= "${DESCRIPTION} \ diff --git a/meta/recipes-support/ptest-runner/files/ptest-runner b/meta/recipes-support/ptest-runner/files/ptest-runner new file mode 100644 index 0000000..4f3c7ce --- /dev/null +++ b/meta/recipes-support/ptest-runner/files/ptest-runner @@ -0,0 +1,16 @@ +#!/bin/sh + +echo "START: $0" +cd /usr/lib +for x in * +do + if [ -x "/usr/lib/$x/ptest/run-ptest" ]; then + date "+%Y-%m-%dT%H:%M" + echo "BEGIN: $x" + cd /usr/lib/$x/ptest + ./run-ptest + echo "END: $x" + date "+%Y-%m-%dT%H:%M" + fi +done +echo "STOP: $0" diff --git a/meta/recipes-support/ptest-runner/ptest-runner_1.0.bb b/meta/recipes-support/ptest-runner/ptest-runner_1.0.bb new file mode 100644 index 0000000..6b866d4 --- /dev/null +++ b/meta/recipes-support/ptest-runner/ptest-runner_1.0.bb @@ -0,0 +1,17 @@ +SRC_URI += "file://ptest-runner" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ + file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" + +INHIBIT_DEFAULT_DEPS = "1" + +do_install () { + mkdir -p ${D}${bindir} + install -m 0755 ${WORKDIR}/ptest-runner ${D}${bindir} +} + +do_patch[noexec] = "1" +do_configure[noexec] = "1" +do_compile[noexec] = "1" +do_build[noexec] = "1"