mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
Changelog: =========== - remove unneeded use of Import::Into - fix tests that invoke Test::Warnings->import directly - avoid redefinition warnings when $^W is enabled in tests - allow tests to pass even when Import::Into is not installed - add backcompat shim for cases where Test::More is loaded in tests after Test::Warnings - fix Test2 compability for done_testing() - Test2::Warnings added as a simple wrapper (for now) (From OE-Core rev: f203ec55e1fd12e4e6822839a4979b3054617d59) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
37 lines
1.4 KiB
BlitzBasic
37 lines
1.4 KiB
BlitzBasic
SUMMARY = "Test::Warnings - Test for warnings and the lack of them"
|
|
DESCRIPTION = "If you've ever tried to use Test::NoWarnings to confirm there are no \
|
|
warnings generated by your tests, combined with the convenience of \
|
|
\\"done_testing\\" to not have to declare a test count, you'll have discovered \
|
|
that these two features do not play well together, as the test count will \
|
|
be calculated *before* the warnings test is run, resulting in a TAP error. \
|
|
(See "examples/test_nowarnings.pl" in this distribution for a \
|
|
demonstration.)"
|
|
HOMEPAGE = "https://github.com/karenetheridge/Test-Warnings"
|
|
BUGTRACKER = "https://rt.cpan.org/Public/Dist/Display.html?Name=Test-Warnings"
|
|
SECTION = "libs"
|
|
LICENSE = "Artistic-1.0-Perl | GPL-1.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=f98106ac3cc05d9cbebcdb8fbf7b7815"
|
|
|
|
SRC_URI = "${CPAN_MIRROR}/authors/id/E/ET/ETHER/Test-Warnings-${PV}.tar.gz"
|
|
|
|
SRC_URI[sha256sum] = "682de3e7a3e8ac9265c53d0e314b8b903294c5199c005bd37e808f4484c25df2"
|
|
|
|
S = "${WORKDIR}/Test-Warnings-${PV}"
|
|
|
|
inherit cpan ptest-perl
|
|
|
|
RDEPENDS:${PN} += "\
|
|
perl-module-test-builder \
|
|
"
|
|
|
|
# Many hidden dependencies and mysterious failures occur without full perl-modules
|
|
RDEPENDS:${PN}-ptest += "perl-modules"
|
|
|
|
do_install_ptest_perl:append () {
|
|
cp -r ${B}/t/lib ${D}${PTEST_PATH}/t/
|
|
chown -R root:root ${D}${PTEST_PATH}/t/lib
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|