summaryrefslogtreecommitdiffstats
path: root/recipes-test/autotest/autotest.inc
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2014-06-26 13:57:02 +0200
committerAdrian Dudau <adrian.dudau@enea.com>2014-06-26 13:57:02 +0200
commit74d51c8c3e18a8b6738aff0c6f7ff706fd70eaa6 (patch)
treed4b576b12f8fe930ac8a76056ecaa356ec0ec133 /recipes-test/autotest/autotest.inc
downloadmeta-vt-daisy-enea.tar.gz
initial commit for Enea Linux 4.0daisy-enea
Migrated from the internal git server on the daisy-enea branch Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'recipes-test/autotest/autotest.inc')
-rw-r--r--recipes-test/autotest/autotest.inc17
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes-test/autotest/autotest.inc b/recipes-test/autotest/autotest.inc
new file mode 100644
index 0000000..c9ac55e
--- /dev/null
+++ b/recipes-test/autotest/autotest.inc
@@ -0,0 +1,17 @@
1SUMMARY = "Autotest framework"
2DESCRIPTION = "Autotest - fully automated testing under linux."
3HOMEPAGE = "http://autotest.github.io"
4SECTION = "console/tests"
5LICENSE = "GPLv2 & BSD & LGPLv2+ & MIT"
6
7SRC_URI = "https://github.com/autotest/autotest/archive/${PV}.tar.gz"
8
9FILES_${PN} += "/opt /etc/profile.d/autotest.sh"
10
11do_install() {
12 install -d ${D}/opt/${PN}
13 cp -r ${B}/* ${D}/opt/${PN}
14
15 mkdir -p ${D}/etc/profile.d/
16 echo "export AUTOTEST_PATH=/opt/${PN}" > ${D}/etc/profile.d/autotest.sh
17}