summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-09-01 16:37:24 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-09-01 16:37:24 +0200
commit58ad0b1d7501ba6637784b9d4ef4387d7de23832 (patch)
treed38024bb94daba33122d7a879390a86e93dada72
parentf800f67175e7243be993f3b02bc7a503dc730a95 (diff)
downloadmeta-ti-58ad0b1d7501ba6637784b9d4ef4387d7de23832.tar.gz
task-ti-test: import task-arago-test.bb from arago git
* ltp-ddt isn't in meta-oe or meta-ti yet, but will be soon Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rw-r--r--recipes-ti/tasks/task-ti-test.bb33
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes-ti/tasks/task-ti-test.bb b/recipes-ti/tasks/task-ti-test.bb
new file mode 100644
index 00000000..ff717215
--- /dev/null
+++ b/recipes-ti/tasks/task-ti-test.bb
@@ -0,0 +1,33 @@
1DESCRIPTION = "Extended task to get System Test specific apps"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
4
5inherit task
6
7# those ones can be set in machine config to supply packages needed to get machine booting
8MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
9MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
10
11TEST = "\
12 bonnie++ \
13 hdparm \
14 iozone3 \
15 iperf \
16 lmbench \
17 rt-tests \
18 "
19
20TI_TEST = "\
21 ltp-ddt \
22 "
23
24RDEPENDS_${PN} = "\
25 ${TEST} \
26 ${TI_TEST} \
27 ${MACHINE_ESSENTIAL_EXTRA_RDEPENDS} \
28 "
29
30RRECOMMENDS_${PN} = "\
31 ${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS} \
32 "
33