diff options
author | Yan <yanxk.fnst@fujitsu.com> | 2023-04-26 08:32:26 +0800 |
---|---|---|
committer | Yan <yanxk.fnst@fujitsu.com> | 2023-04-26 08:32:26 +0800 |
commit | 5c4224f57614b3b836b576be6d834ffa6c8e852c (patch) | |
tree | 5883ca0b2de3f0b4d66b82620b405b2e5169cc84 /meta-agl-test | |
parent | 5d4c4f686387b05b230bd3c365f1a19cf838f7e0 (diff) |
agl-test-framework: fix installation bug
aio-stress should be installed to the "aio_stress" folder.
Bug-AGL: SPEC-4733
Signed-off-by: Yan <yanxk.fnst@fujitsu.com>
Change-Id: If46baf06b9c2db8adeb7c4c8edb9948671f9ee73
Diffstat (limited to 'meta-agl-test')
-rw-r--r-- | meta-agl-test/recipes-tests/aio-stress/aio-stress_0.22.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-agl-test/recipes-tests/aio-stress/aio-stress_0.22.bb b/meta-agl-test/recipes-tests/aio-stress/aio-stress_0.22.bb index 48241071..d014ca13 100644 --- a/meta-agl-test/recipes-tests/aio-stress/aio-stress_0.22.bb +++ b/meta-agl-test/recipes-tests/aio-stress/aio-stress_0.22.bb @@ -16,7 +16,7 @@ SRC_URI = "https://oss.oracle.com/~mason/aio-stress/aio-stress.c \ S = "${WORKDIR}" FILES:${PN} += " \ - /usr/AGL/agl-test/tests/aio-stress/resource \ + /usr/AGL/agl-test/tests/aio_stress/resource \ " do_compile() { @@ -24,8 +24,8 @@ do_compile() { } do_install:append() { - install -d ${D}/usr/AGL/agl-test/tests/aio-stress/resource/ - install -m 0755 ${WORKDIR}/aio-stress ${D}/usr/AGL/agl-test/tests/aio-stress/resource/ + install -d ${D}/usr/AGL/agl-test/tests/aio_stress/resource/ + install -m 0755 ${WORKDIR}/aio-stress ${D}/usr/AGL/agl-test/tests/aio_stress/resource/ } RDEPENDS:${PN} += " \ |