summaryrefslogtreecommitdiffstats
path: root/recipes-test/autotest/autotest.inc
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-10 03:19:54 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-10 03:19:54 +0200
commitc158582c0fc7f4bd73980fe9adad446855f4d61b (patch)
tree31b701a2367cb983e76e76cd7c2ba176ad33e5ac /recipes-test/autotest/autotest.inc
downloadmeta-vt-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@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}