From: Patrick Robb <probb@iol.unh.edu>
To: Paul.Szczepanek@arm.com
Cc: dev@dpdk.org, Luca.Vizzarro@arm.com, dmarx@iol.unh.edu,
npratte@iol.unh.edu, thomas.wilks@arm.com,
Patrick Robb <probb@iol.unh.edu>
Subject: [PATCH 1/2] dts: include smoke tests in tests config
Date: Wed, 2 Apr 2025 22:30:58 -0400 [thread overview]
Message-ID: <20250403023059.1762841-2-probb@iol.unh.edu> (raw)
In-Reply-To: <20250403023059.1762841-1-probb@iol.unh.edu>
The tests config is created by parsing the testrun config
earlier in the DTS execution than when the smoke_tests
testsuite is added. This situation causes a key error
on the tests_config dictionary when smoke_tests is enabled.
This commit creates a placeholder TestSuiteConfig for
smoke tests in the function which is responsible for
creating the tests config model, resolving the issue.
Fixes: 184d21f08db4 ("dts: add per-test-suite configuration")
Signed-off-by: Patrick Robb <probb@iol.unh.edu>
---
dts/framework/config/test_run.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dts/framework/config/test_run.py b/dts/framework/config/test_run.py
index 06fe28143c..9bbed10f33 100644
--- a/dts/framework/config/test_run.py
+++ b/dts/framework/config/test_run.py
@@ -303,6 +303,9 @@ def make_test_suite_config_field(config_obj: type["BaseConfig"]):
def create_test_suites_config_model(test_suites: Iterable[TestSuiteConfig]) -> type[BaseModel]:
"""Create model for the test suites configuration."""
+
+ test_suites += [TestSuiteConfig(test_suite="smoke_tests")]
+
test_suites_kwargs = {
t.test_suite_name: make_test_suite_config_field(t.test_suite_spec.config_obj)
for t in test_suites
--
2.48.1
next prev parent reply other threads:[~2025-04-03 2:35 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-03 2:30 [PATCH 0/2] dts: smoke test bugfixes Patrick Robb
2025-04-03 2:30 ` Patrick Robb [this message]
2025-04-03 13:45 ` [PATCH 1/2] dts: include smoke tests in tests config Luca Vizzarro
2025-04-03 13:42 ` Patrick Robb
2025-04-03 2:30 ` [PATCH 2/2] dts: update dpdk-devbind script regex Patrick Robb
2025-04-03 13:45 ` Luca Vizzarro
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250403023059.1762841-2-probb@iol.unh.edu \
--to=probb@iol.unh.edu \
--cc=Luca.Vizzarro@arm.com \
--cc=Paul.Szczepanek@arm.com \
--cc=dev@dpdk.org \
--cc=dmarx@iol.unh.edu \
--cc=npratte@iol.unh.edu \
--cc=thomas.wilks@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).