patch 'buildtools/test: suppress empty output' has been queued to stable release 25.11.1

Kevin Traynor ktraynor at redhat.com
Thu Feb 26 14:08:07 CET 2026


Hi,

FYI, your patch has been queued to stable release 25.11.1

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 03/02/26. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://github.com/kevintraynor/dpdk-stable

This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/c5c34d6c3ecb21657fe6f538e05dbef42a2fe1b8

Thanks.

Kevin

---
>From c5c34d6c3ecb21657fe6f538e05dbef42a2fe1b8 Mon Sep 17 00:00:00 2001
From: Bruce Richardson <bruce.richardson at intel.com>
Date: Thu, 11 Dec 2025 17:17:08 +0000
Subject: [PATCH] buildtools/test: suppress empty output

[ upstream commit 7d86af9ee0c40a44555b0ab9ec2d2eb7e48a9503 ]

If there are no tests which are not assigned to a test suite, omit the
line printing the non_suite_tests. This avoid having error messages from
meson about test "" not being in any test suite.

Fixes: 25065ef1f6c0 ("test: emit warning for orphaned tests")

Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
Acked-by: Marat Khalili <marat.khalili at huawei.com>
---
 buildtools/get-test-suites.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/buildtools/get-test-suites.py b/buildtools/get-test-suites.py
index c3a99a862e..9770b60a85 100644
--- a/buildtools/get-test-suites.py
+++ b/buildtools/get-test-suites.py
@@ -39,3 +39,4 @@ for fname in input_list:
 for suite in test_suites.keys():
     print(f"{suite}={','.join(test_suites[suite])}")
-print(f"non_suite_tests={','.join(non_suite_tests)}")
+if non_suite_tests:
+    print(f"non_suite_tests={','.join(non_suite_tests)}")
-- 
2.53.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-02-26 10:16:47.395797177 +0000
+++ 0005-buildtools-test-suppress-empty-output.patch	2026-02-26 10:16:46.880422729 +0000
@@ -1 +1 @@
-From 7d86af9ee0c40a44555b0ab9ec2d2eb7e48a9503 Mon Sep 17 00:00:00 2001
+From c5c34d6c3ecb21657fe6f538e05dbef42a2fe1b8 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 7d86af9ee0c40a44555b0ab9ec2d2eb7e48a9503 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -20 +21 @@
-index 73f1d9c9e1..36ed4bedc2 100644
+index c3a99a862e..9770b60a85 100644



More information about the stable mailing list