mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-07 15:40:01 +00:00
cunit: add ptest
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -7,16 +7,30 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=7734aa853b85d6f935466f081490ddbb"
|
|||||||
S = "${WORKDIR}/CUnit-${PV}"
|
S = "${WORKDIR}/CUnit-${PV}"
|
||||||
|
|
||||||
SRC_URI = "${SOURCEFORGE_MIRROR}/project/cunit/CUnit/${PV}/CUnit-${PV}.tar.bz2 \
|
SRC_URI = "${SOURCEFORGE_MIRROR}/project/cunit/CUnit/${PV}/CUnit-${PV}.tar.bz2 \
|
||||||
file://fixup-install-docdir.patch"
|
file://fixup-install-docdir.patch \
|
||||||
|
file://run-ptest \
|
||||||
|
"
|
||||||
SRC_URI[md5sum] = "b5f1a9f6093869c070c6e4a9450cc10c"
|
SRC_URI[md5sum] = "b5f1a9f6093869c070c6e4a9450cc10c"
|
||||||
SRC_URI[sha256sum] = "f5b29137f845bb08b77ec60584fdb728b4e58f1023e6f249a464efa49a40f214"
|
SRC_URI[sha256sum] = "f5b29137f845bb08b77ec60584fdb728b4e58f1023e6f249a464efa49a40f214"
|
||||||
|
|
||||||
UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/cunit/files/releases"
|
UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/cunit/files/releases"
|
||||||
|
|
||||||
inherit autotools-brokensep remove-libtool
|
inherit autotools-brokensep remove-libtool ptest
|
||||||
|
|
||||||
EXTRA_OECONF = "--enable-memtrace --enable-automated --enable-basic --enable-console"
|
EXTRA_OECONF = "--enable-memtrace --enable-automated --enable-basic --enable-console"
|
||||||
|
|
||||||
|
TESTBIN = "/CUnit/Sources/Test/test_cunit"
|
||||||
|
|
||||||
|
PACKAGECONFIG ?= "${@bb.utils.contains('PTEST_ENABLED', '1', 'test','', d)} \
|
||||||
|
"
|
||||||
|
|
||||||
|
PACKAGECONFIG[test] = "--enable-test,,,"
|
||||||
|
|
||||||
|
do_install_ptest() {
|
||||||
|
install -d ${D}${PTEST_PATH}/tests
|
||||||
|
install -m 0755 ${S}${TESTBIN} ${D}${PTEST_PATH}/tests/
|
||||||
|
}
|
||||||
|
|
||||||
FILES_${PN}-dev += "${datadir}/CUnit"
|
FILES_${PN}-dev += "${datadir}/CUnit"
|
||||||
FILES_${PN}-doc += "${docdir}"
|
FILES_${PN}-doc += "${docdir}"
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
ptestdir=$(dirname "$(readlink -f "$0")")
|
||||||
|
cd $ptestdir/tests
|
||||||
|
./test_cunit > cunit_test_out.tmp
|
||||||
|
|
||||||
|
echo "--- Test output ---"
|
||||||
|
cat cunit_test_out.tmp
|
||||||
|
echo ""
|
||||||
|
echo "--- ptest result ---"
|
||||||
|
|
||||||
|
grep "Failures: 0" cunit_test_out.tmp > /dev/null
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
echo "PASS: cunit"
|
||||||
|
else
|
||||||
|
echo "FAIL: cunit"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f cunit_test_out.tmp
|
||||||
Reference in New Issue
Block a user