All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/24] ptest-packagelists.inc: correctly assign fast and slow tests
@ 2022-12-13 11:10 Alexander Kanavin
  2022-12-13 11:10 ` [PATCH 02/24] devtool/upgrade: correctly handle recipes where S is a subdir of upstream tree Alexander Kanavin
                   ` (22 more replies)
  0 siblings, 23 replies; 29+ messages in thread
From: Alexander Kanavin @ 2022-12-13 11:10 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

The execution times were checked from
https://autobuilder.yocto.io/pub/non-release/20221127-2/testresults/qemux86-64-ptest/core-image-ptest-all/log.do_testimage.40537.20221127010849
and ptests were moved both ways according to the same criteria:
more than 30 seconds or less.

openssl is dropped from fast tests, as it is also listed in slow
tests (which is correct).

With the rearrangement fast ptests altogether take about 420 seconds
on qemux86_64 with kvm.

m4 ptest was missing a depedency.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 .../distro/include/ptest-packagelists.inc     | 21 +++++++++----------
 meta/recipes-devtools/m4/m4-1.4.19.inc        |  1 +
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/meta/conf/distro/include/ptest-packagelists.inc b/meta/conf/distro/include/ptest-packagelists.inc
index 79de9b00ae..48dec07577 100644
--- a/meta/conf/distro/include/ptest-packagelists.inc
+++ b/meta/conf/distro/include/ptest-packagelists.inc
@@ -5,22 +5,22 @@
 #
 PTESTS_FAST = "\
     acl-ptest \
-    apr-ptest \
     apr-util-ptest \
     attr-ptest \
+    babeltrace-ptest \
+    babeltrace2-ptest \
     bc-ptest \
     bluez5-ptest \
-    bzip2-ptest \
+    busybox-ptest \
     diffstat-ptest \
     diffutils-ptest \
-    elfutils-ptest \
     ethtool-ptest \
     expat-ptest \
+    findutils-ptest \
     flex-ptest \
     gawk-ptest \
     gdbm-ptest \
     gdk-pixbuf-ptest \
-    gettext-ptest \
     glib-networking-ptest \
     gzip-ptest \
     json-c-ptest \
@@ -29,7 +29,6 @@ PTESTS_FAST = "\
     liberror-perl-ptest \
     libgpg-error-ptest\
     libnl-ptest \
-    libmodule-build-perl-ptest \
     libpcre-ptest \
     libssh2-ptest \
     libtimedate-perl-ptest \
@@ -50,10 +49,8 @@ PTESTS_FAST = "\
     lzo-ptest \
     m4-ptest \
     nettle-ptest \
-    openssl-ptest \
     opkg-ptest \
     pango-ptest \
-    parted-ptest \
     popt-ptest \
     python3-atomicwrites-ptest \
     python3-bcrypt-ptest \
@@ -82,21 +79,23 @@ PTESTS_FAST:remove:riscv32 = "qemu-ptest"
 PTESTS_PROBLEMS:append:riscv32 = " qemu-ptest"
 
 PTESTS_SLOW = "\
-    babeltrace-ptest \
-    babeltrace2-ptest \
-    busybox-ptest \
+    apr-ptest \
+    bzip2-ptest \
     coreutils-ptest \
     curl-ptest \
     dbus-ptest \
     e2fsprogs-ptest \
-    findutils-ptest \
+    elfutils-ptest \
+    gettext-ptest \
     glib-2.0-ptest \
     gstreamer1.0-ptest \
     libevent-ptest \
     libgcrypt-ptest \
+    libmodule-build-perl-ptest \
     lttng-tools-ptest \
     openssh-ptest \
     openssl-ptest \
+    parted-ptest \
     perl-ptest \
     python3-cryptography-ptest \
     python3-ptest \
diff --git a/meta/recipes-devtools/m4/m4-1.4.19.inc b/meta/recipes-devtools/m4/m4-1.4.19.inc
index 2adf4de6f2..6ee9742277 100644
--- a/meta/recipes-devtools/m4/m4-1.4.19.inc
+++ b/meta/recipes-devtools/m4/m4-1.4.19.inc
@@ -54,6 +54,7 @@ do_install_ptest() {
 
 RDEPENDS:${PN}-ptest += "make coreutils diffutils"
 RDEPENDS:${PN}-ptest:append:libc-glibc = "\
+     locale-base-fr-fr \
      locale-base-fr-fr.iso-8859-1 \
 "
 
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2022-12-22  8:11 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-13 11:10 [PATCH 01/24] ptest-packagelists.inc: correctly assign fast and slow tests Alexander Kanavin
2022-12-13 11:10 ` [PATCH 02/24] devtool/upgrade: correctly handle recipes where S is a subdir of upstream tree Alexander Kanavin
2022-12-13 11:10 ` [PATCH 03/24] llvm: update 15.0.4 -> 15.0.6 Alexander Kanavin
2022-12-13 11:10 ` [PATCH 04/24] tcmode-default.inc: set LLVMVERSION to a major version wildcard Alexander Kanavin
2022-12-13 11:10 ` [PATCH 05/24] python3-numpy: fix upstream version check Alexander Kanavin
2022-12-13 11:11 ` [PATCH 06/24] python3-poetry-core: update 1.3.2 -> 1.4.0 Alexander Kanavin
2022-12-14  0:43   ` [OE-core] " Tim Orling
2022-12-14 11:59     ` Alexander Kanavin
2022-12-13 11:11 ` [PATCH 07/24] tcl: update 8.6.12 -> 8.6.13 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 08/24] libnewt: update 0.52.21 -> 0.52.23 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 09/24] gtk+3: update 3.24.34 -> 3.24.35 Alexander Kanavin
2022-12-13 14:37   ` [OE-core] " Ross Burton
2022-12-13 11:11 ` [PATCH 10/24] libxdmcp: update 1.1.3 -> 1.1.4 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 11/24] libxpm: update 3.5.13 -> 3.5.14 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 12/24] libxrandr: update 1.5.2 -> 1.5.3 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 13/24] bluez: update 5.65 -> 5.66 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 14/24] cmake: always add local files to WORKDIR Alexander Kanavin
2022-12-21 10:18   ` [OE-core] " Richard Purdie
2022-12-22  8:11     ` Alexander Kanavin
2022-12-13 11:11 ` [PATCH 15/24] cmake: update 3.24.2 -> 3.25.1 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 16/24] libxcrypt: update PV to match SRCREV Alexander Kanavin
2022-12-13 11:11 ` [PATCH 17/24] ovmf: update edk2-stable202208 -> edk2-stable202211 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 18/24] python3-dbusmock: update 0.28.4 -> 0.28.6 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 19/24] ruby: merge .inc into .bb Alexander Kanavin
2022-12-13 11:11 ` [PATCH 20/24] ruby: update 3.1.2 -> 3.1.3 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 21/24] ghostscript: update 9.56.1 -> 10.0.0 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 22/24] tzdata: update 2022d -> 2022g Alexander Kanavin
2022-12-13 11:11 ` [PATCH 23/24] systemtap: upgrade 4.7 -> 4.8 Alexander Kanavin
2022-12-13 11:11 ` [PATCH 24/24] gnupg: upgrade 2.3.7 -> 2.3.8 Alexander Kanavin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.