mirror of
git://git.yoctoproject.org/poky.git
synced 2025-08-21 16:31:39 +02:00

Tests [YOCTO #15943] Move code from test_devtool_upgrade_git() into separate, local function. Add a test_devtool_upgrade_gitsm() selftest for devtool. Add recipes for testing gitsm components. (From OE-Core rev: c996801af3a22f50955ed4e47220461d6d243a3b) Signed-off-by: Tobias Pistora <pistora.tobias@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
939 B
Plaintext
31 lines
939 B
Plaintext
SUMMARY = "Test recipe for fetching git submodules"
|
|
HOMEPAGE = "http://git.yoctoproject.org/cgit/cgit.cgi/git-submodule-test/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
# Note: this is intentionally not the latest version in the original .bb
|
|
SRCREV = "a2885dd7d25380d23627e7544b7bbb55014b16ee"
|
|
PV = "0.1+git"
|
|
|
|
SRC_URI = "gitsm://git.yoctoproject.org/git-submodule-test;branch=master"
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
RECIPE_NO_UPDATE_REASON = "This recipe is used to test devtool upgrade feature"
|
|
|
|
EXCLUDE_FROM_WORLD = "1"
|
|
|
|
do_test_git_as_user() {
|
|
cd ${S}
|
|
git status
|
|
git submodule status
|
|
}
|
|
addtask test_git_as_user after do_unpack
|
|
|
|
fakeroot do_test_git_as_root() {
|
|
cd ${S}
|
|
git status
|
|
git submodule status
|
|
}
|
|
do_test_git_as_root[depends] += "virtual/fakeroot-native:do_populate_sysroot"
|
|
addtask test_git_as_root after do_unpack |