ethtool: add ptest

Install ethtool test and run it as a ptest.

(From OE-Core rev: 6b70373923909a05bb4d99beb8105c732ee0b2de)

Signed-off-by: Gabriel Barbu <gabriel.barbu@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Gabriel Barbu 2013-07-11 15:28:08 +02:00 committed by Richard Purdie
parent 334a22f660
commit 0ef252e7de
2 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,2 @@
#!/bin/sh
make -k runtest-TESTS

View File

@ -6,9 +6,23 @@ LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
file://ethtool.c;beginline=4;endline=17;md5=c19b30548c582577fc6b443626fc1216"
SRC_URI = "${KERNELORG_MIRROR}/software/network/ethtool/ethtool-${PV}.tar.gz"
SRC_URI = "${KERNELORG_MIRROR}/software/network/ethtool/ethtool-${PV}.tar.gz \
file://run-ptest"
SRC_URI[md5sum] = "b41deb37143dfb86934a8f52cea853d2"
SRC_URI[sha256sum] = "62f0a9cea954c32a2bdc2d2ece295fda5b915cfea56f5de97b997d8ebaae0381"
inherit autotools
inherit autotools ptest
RDEPENDS_${PN}-ptest += "make"
do_compile_ptest() {
oe_runmake buildtest-TESTS
}
do_install_ptest () {
cp ${B}/Makefile ${D}${PTEST_PATH}
install ${B}/test-cmdline ${D}${PTEST_PATH}
install ${B}/test-features ${D}${PTEST_PATH}
install ${B}/ethtool ${D}${PTEST_PATH}/ethtool
sed -i 's/^Makefile/_Makefile/' ${D}${PTEST_PATH}/Makefile
}