Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups
@ 2025-03-12 10:30 Karthik B S
  2025-03-12 20:43 ` Kamil Konieczny
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Karthik B S @ 2025-03-12 10:30 UTC (permalink / raw)
  To: igt-dev; +Cc: pranay.samala, Karthik B S

Multiple subtest groups exist in kms_addfb_basic with individual
igt_fixutre calls. Split these using igt_subtest_group so that any
failure in the fixture of one of the individual subtest groups don't
affect the results of subtests in other groups.

Signed-off-by: Karthik B S <karthik.b.s@intel.com>
---
 tests/kms_addfb_basic.c | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
index e5ff9ea32..268e4e0e4 100644
--- a/tests/kms_addfb_basic.c
+++ b/tests/kms_addfb_basic.c
@@ -989,15 +989,20 @@ igt_main
 		igt_require(has_addfb2_iface(fd));
 	}
 
-	invalid_tests(fd);
+	igt_subtest_group
+		invalid_tests(fd);
 
-	pitch_tests(fd);
+	igt_subtest_group
+		pitch_tests(fd);
 
-	prop_tests(fd);
+	igt_subtest_group
+		prop_tests(fd);
 
-	master_tests(fd);
+	igt_subtest_group
+		master_tests(fd);
 
-	tiling_tests(fd);
+	igt_subtest_group
+		tiling_tests(fd);
 
 	igt_subtest_group {
 		igt_fixture
-- 
2.43.0


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

end of thread, other threads:[~2025-03-26  4:37 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-12 10:30 [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups Karthik B S
2025-03-12 20:43 ` Kamil Konieczny
2025-03-14  9:43   ` Karthik B S
2025-03-20 13:30     ` Kamil Konieczny
2025-03-20 14:09       ` Karthik B S
2025-03-25  7:38         ` Sharma, Swati2
2025-03-13  2:45 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-03-13  3:01 ` ✓ i915.CI.BAT: " Patchwork
2025-03-13  4:52 ` ✗ i915.CI.Full: failure " Patchwork
2025-03-26  4:37   ` Karthik B S
2025-03-13 17:49 ` ✓ Xe.CI.Full: success " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox