Skip to content
Snippets Groups Projects
Verified Commit 6e63a66e authored by Andrei Gherzan's avatar Andrei Gherzan :penguin:
Browse files

podman: Add ptest support for system tests

The recipe was proposed for meta-virtualization kirkstone[1] but it
might not be deemed resonable[2] for a stable branch.

[1] https://lists.yoctoproject.org/g/meta-virtualization/message/7598
[2] https://lists.yoctoproject.org/g/meta-virtualization/message/7603

Fixes: eclipse/oniro-core/oniro#21



Signed-off-by: Andrei Gherzan's avatarAndrei Gherzan <andrei.gherzan@huawei.com>
parent 4865171f
No related branches found
No related tags found
Loading
#!/bin/sh
# SPDX-FileCopyrightText: Huawei Inc.
#
# SPDX-License-Identifier: MIT
#
# Podman system tests
#
# The system tests don't need any go related variables. Dummy-define them to
# avoid useless warnings/errors.
GOOS=undefined GO=true BUILDTAGS= make localsystem
# SPDX-FileCopyrightText: Huawei Inc.
#
# SPDX-License-Identifier: MIT
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://run-ptest"
inherit ptest
do_install_ptest () {
cp ${S}/src/import/Makefile ${D}${PTEST_PATH}
install -d ${D}${PTEST_PATH}/test
cp -r ${S}/src/import/test/system ${D}${PTEST_PATH}/test
# Some compatibility links for the Makefile assumptions.
install -d ${D}${PTEST_PATH}/bin
ln -s ${bindir}/podman ${D}${PTEST_PATH}/bin/podman
ln -s ${bindir}/podman-remote ${D}${PTEST_PATH}/bin/podman-remote
}
RDEPENDS:${PN}-ptest += " \
bash \
bats \
buildah \
catatonit \
coreutils \
file \
gnupg \
jq \
make \
tar \
"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment