mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
This Unittest tries to rename a package, using an already used name and fails on do_package. Reviewed-by: Yoann CONGAL <yoann.congal@smile.fr> (From OE-Core rev: c3fe173d5196506d89aa464ba56aabcf581a60db) Signed-off-by: Fawzi KHABER <fawzi.khaber@smile.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
11 lines
403 B
BlitzBasic
11 lines
403 B
BlitzBasic
SUMMARY = "Test case that tries to rename a package to an existing one and fails"
|
|
DESCRIPTION = "This generates a packaging error when a package is renamed to a pre-existing name"
|
|
LICENSE = "MIT"
|
|
|
|
# Add a new package ${PN}-renametest
|
|
PACKAGES += "${PN}-renametest"
|
|
# ... and try to rename the ${PN}-dev to the new ${PN}-renametest (conflict)
|
|
PKG:${PN}-dev = "${PN}-renametest"
|
|
|
|
EXCLUDE_FROM_WORLD = "1"
|