diff options
author | duerpei <duep.fnst@fujitsu.com> | 2022-10-16 11:07:24 +0800 |
---|---|---|
committer | duerpei <duep.fnst@fujitsu.com> | 2022-10-16 11:07:24 +0800 |
commit | f8566ad47db48aca6b1128b553d09648e160881f (patch) | |
tree | 95245fc378e21686660e4aedf3584500fc02778a /meta-agl-test/recipes-tests/agl-test-framework/agl-test-framework.bb | |
parent | 05fa031caab2fdf299fe4a2b3cddcfe2358f9590 (diff) |
meta-agl-test: Bump SRCREVoctopus_14.94.0octopus_14.93.0octopus/14.94.0octopus/14.93.014.94.014.93.0
Bump agl-test-framework SRCREV to include recently added test sets
into the test framework.
By the way, change a code indentation which is not standard.
Bug-AGL: SPEC-4345
Signed-off-by: duerpei <duep.fnst@fujitsu.com>
Change-Id: I314d0e40d02a478d57fc918017456219b5699249
Diffstat (limited to 'meta-agl-test/recipes-tests/agl-test-framework/agl-test-framework.bb')
-rw-r--r-- | meta-agl-test/recipes-tests/agl-test-framework/agl-test-framework.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-agl-test/recipes-tests/agl-test-framework/agl-test-framework.bb b/meta-agl-test/recipes-tests/agl-test-framework/agl-test-framework.bb index 907a9438..f12308f2 100644 --- a/meta-agl-test/recipes-tests/agl-test-framework/agl-test-framework.bb +++ b/meta-agl-test/recipes-tests/agl-test-framework/agl-test-framework.bb @@ -7,7 +7,7 @@ PN = 'agl-test-framework' PV = '1' SRC_URI = "git://gerrit.automotivelinux.org/gerrit/src/agl-test-framework;protocol=https;branch=master" -SRCREV = "50df2b6904dc448c2a8c5ed4f974c631fd97b070" +SRCREV = "2b0b2c37da795ae77d006308c96a054734ab6d24" S = "${WORKDIR}/git" @@ -24,10 +24,12 @@ do_install() { install -m 0644 ${WORKDIR}/git/plugins/* ${D}/usr/AGL/agl-test/plugins/ install -d ${D}/usr/AGL/agl-test/template/ install -m 0644 ${WORKDIR}/git/template/* ${D}/usr/AGL/agl-test/template/ + install -d ${D}/usr/AGL/agl-test/tests/ + install -m 0644 ${WORKDIR}/git/tests/__init__.py ${D}/usr/AGL/agl-test/tests/ } RDEPENDS:${PN} += " \ python3-pytest \ python3-jinja2 \ - python3-pytest-order \ + python3-pytest-order \ " |