summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorChee Yang Lee <chee.yang.lee@intel.com>2020-10-05 16:38:43 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-10-09 12:21:35 +0100
commit073b659383cb1888685510af31c4fac42dc55885 (patch)
treec235cc620aa2e9dbcfe7d3e788b171a748e16e96 /meta/recipes-devtools
parent3c6611455c8f44e98756f7dbce50f9db4cf611cb (diff)
downloadpoky-073b659383cb1888685510af31c4fac42dc55885.tar.gz
perl: fix ptest test count
patche added in commit c2710903859a5545aa9dd56251f61667ee8d80bd failed ptest perl.t/re/pat. The patch updates incorrect test cases count causes the ptest to fail. 864 test cases before apply the patch while the patch added only 4 test cases so it should be 868 instead of 873. ptest-runner log :- PASS: t/re/overload # Looks like you planned 873 tests but ran 868. FAIL: t/re/pat PASS: t/re/pat_advanced [YOCTO #14071] (From OE-Core rev: 552739383321bd9b4780bd0026d6107ece530522) Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com> Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com<mailto:chee.yang.lee@intel.com>> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/perl/files/CVE-2020-12723.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/files/CVE-2020-12723.patch b/meta/recipes-devtools/perl/files/CVE-2020-12723.patch
index ad195cffab..d25f4d4a74 100644
--- a/meta/recipes-devtools/perl/files/CVE-2020-12723.patch
+++ b/meta/recipes-devtools/perl/files/CVE-2020-12723.patch
@@ -265,7 +265,7 @@ index 6a868f4..2869b58 100644
265 skip_all_without_unicode_tables(); 265 skip_all_without_unicode_tables();
266 266
267-plan tests => 864; # Update this when adding/deleting tests. 267-plan tests => 864; # Update this when adding/deleting tests.
268+plan tests => 873; # Update this when adding/deleting tests. 268+plan tests => 868; # Update this when adding/deleting tests.
269 269
270 run_tests() unless caller; 270 run_tests() unless caller;
271 271