Install insserv test suite and run it as ptest.
Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
--- /dev/null
+#!/bin/sh
+
+basedir=$(dirname $0)
+. $basedir/common
+
+output() {
+ if [ $? -eq 0 ]; \
+ then echo "PASS: $i"; \
+ else echo "FAIL: $i"; \
+ fi;
+}
+
+for i in test_simple_sequence test_undetected_loop; \
+ do $i &>/dev/null ; output; \
+done
+
+rm -rf ${tmpdir}
SRC_URI = "ftp://ftp.suse.com/pub/projects/init/${BPN}-${PV}.tar.bz2 \
file://makefile.patch \
file://disable_runtests.patch \
- file://insserv.conf"
+ file://insserv.conf \
+ file://run-ptest \
+"
SRC_URI[md5sum] = "4a97d900855148842b1aa8f33b988b47"
SRC_URI[sha256sum] = "89a0a093b1cf3d802ad40568e64b496b493f51ff9825905c8bd12738b374ca47"
}
BBCLASSEXTEND = "native"
+
+inherit ptest
+
+do_install_ptest() {
+ for i in common suite; do cp ${S}/tests/$i ${D}${PTEST_PATH}; done
+ sed -e 's|${\PWD}/insserv|insserv|;/trap/d' -i ${D}${PTEST_PATH}/suite
+ sed -e '/test_simple_sequence$/d;/test_undetected_loop$/d' -i ${D}${PTEST_PATH}/common
+}
+
+RDEPENDS_${PN}-ptest += "bash"