From 93742e37797ef0659bb030cee23a6e3c35e92479 Mon Sep 17 00:00:00 2001 From: Aníbal Limón Date: Mon, 1 May 2017 13:08:07 -0500 Subject: ptest-runner: Upgrade to to 2.1+gitAUTOINC+78afe246fb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new 2.1 version supports creating XML results specifying the -x option. The xml output format can be see here [1]. [1] https://wiki.yoctoproject.org/wiki/QA/xUnit_XML_Template Signed-off-by: Aníbal Limón Signed-off-by: Ross Burton --- .../ptest-runner/ptest-runner_2.0.2.bb | 26 ---------------------- .../ptest-runner/ptest-runner_2.1.bb | 26 ++++++++++++++++++++++ 2 files changed, 26 insertions(+), 26 deletions(-) delete mode 100644 meta/recipes-support/ptest-runner/ptest-runner_2.0.2.bb create mode 100644 meta/recipes-support/ptest-runner/ptest-runner_2.1.bb diff --git a/meta/recipes-support/ptest-runner/ptest-runner_2.0.2.bb b/meta/recipes-support/ptest-runner/ptest-runner_2.0.2.bb deleted file mode 100644 index a3e9a7e214..0000000000 --- a/meta/recipes-support/ptest-runner/ptest-runner_2.0.2.bb +++ /dev/null @@ -1,26 +0,0 @@ -SUMMARY = "A C program to run all installed ptests" -DESCRIPTION = "The ptest-runner2 package installs a ptest-runner \ -program which loops through all installed ptest test suites and \ -runs them in sequence." -HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/ptest-runner2/about/" - -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe" - -SRCREV = "6d2872116cd9d6e1617a768f9d72bbf091489b2d" -PV = "2.0.2+git${SRCPV}" - -SRC_URI = "git://git.yoctoproject.org/ptest-runner2" -S = "${WORKDIR}/git" - -FILES_${PN} = "${bindir}/ptest-runner" - -EXTRA_OEMAKE = "-e MAKEFLAGS=" - -do_compile () { - oe_runmake -} - -do_install () { - install -D -m 0755 ${S}/ptest-runner ${D}${bindir}/ptest-runner -} diff --git a/meta/recipes-support/ptest-runner/ptest-runner_2.1.bb b/meta/recipes-support/ptest-runner/ptest-runner_2.1.bb new file mode 100644 index 0000000000..89d709a7c0 --- /dev/null +++ b/meta/recipes-support/ptest-runner/ptest-runner_2.1.bb @@ -0,0 +1,26 @@ +SUMMARY = "A C program to run all installed ptests" +DESCRIPTION = "The ptest-runner2 package installs a ptest-runner \ +program which loops through all installed ptest test suites and \ +runs them in sequence." +HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/ptest-runner2/about/" + +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe" + +SRCREV = "78afe246fb8cb864656c16dd5d1cfa5721ccc8b7" +PV = "2.1+git${SRCPV}" + +SRC_URI = "git://git.yoctoproject.org/ptest-runner2" +S = "${WORKDIR}/git" + +FILES_${PN} = "${bindir}/ptest-runner" + +EXTRA_OEMAKE = "-e MAKEFLAGS=" + +do_compile () { + oe_runmake +} + +do_install () { + install -D -m 0755 ${S}/ptest-runner ${D}${bindir}/ptest-runner +} -- cgit 1.2.3-korg