diff options
author | duerpei <duep.fnst@fujitsu.com> | 2022-09-02 14:20:45 +0800 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2022-09-07 17:07:17 +0000 |
commit | 0457026fc28c1914d4e12a444c61f1a25ca257dd (patch) | |
tree | 3c9695d9f9507ade9ec2288f01ebc9ff4a4e8c87 /meta-agl-test/recipes-tests/glib2/agl-test-glib2.bb | |
parent | 0dd1e7508ac5b710cf0b94fa7e6b56089f760b46 (diff) |
meta-agl-test:add new feature 'agl-test'
'agl-test' is used to compile the test sets and test framework into the
image, make it more convenient to test target.
Now it's only support the target agl-demo-platform(ivi)
Enable the `agl-test` AGL feature when setting up your build environment
with aglsetup.sh.
This will add the `packagegroup-agl-extend-test` packagegroup to the image,
For specific packages to be added, please refer to the file:
./recipes-platform/packagegroup/packagegroup-agl-extend-test.bb
For running test using 'agl-test', refer to:
https://git.automotivelinux.org/src/agl-test-framework/tree/README
Bug-AGL: SPEC-4345
Signed-off-by: duerpei <duep.fnst@fujitsu.com>
Change-Id: Ic217bff672f3dae1ac3abc18c01ba802ebcb8fe1
Diffstat (limited to 'meta-agl-test/recipes-tests/glib2/agl-test-glib2.bb')
-rw-r--r-- | meta-agl-test/recipes-tests/glib2/agl-test-glib2.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-agl-test/recipes-tests/glib2/agl-test-glib2.bb b/meta-agl-test/recipes-tests/glib2/agl-test-glib2.bb new file mode 100644 index 00000000..fe0da800 --- /dev/null +++ b/meta-agl-test/recipes-tests/glib2/agl-test-glib2.bb @@ -0,0 +1,29 @@ +SUMMARY = "Glib2 Test" +HOMEPAGE = "https://git.automotivelinux.org/src/qa-test-misc/" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" + +PN = 'agl-test-glib2' +PV = '1' + +FILESEXTRAPATHS:append := "${TMPDIR}/work/aarch64-agl-linux/qa-test-misc/1-r0/git/:" +SRC_URI = "file://glib2/ \ + file://LICENSE " + +do_fetch[depends] = "qa-test-misc:do_unpack" + +S = "${WORKDIR}" + +FILES:${PN} += " \ + /usr/AGL/agl-test/tests/glib2 \ +" + +do_install:append() { + install -d ${D}/usr/AGL/agl-test/tests/glib2/ + install -m 0644 ${WORKDIR}/glib2/rootfs-scripts/*.py ${D}/usr/AGL/agl-test/tests/glib2/ +} + +RDEPENDS:${PN} += " \ + agl-test-framework \ + glib-2.0 \ +" |