intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Intel-xe] [PATCH i-g-t v2 00/17] Fix IGT Kunit implementation issues
@ 2023-09-08 12:32 Janusz Krzysztofik
  2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 01/17] lib/kunit: Drop unused file stream Janusz Krzysztofik
                   ` (17 more replies)
  0 siblings, 18 replies; 39+ messages in thread
From: Janusz Krzysztofik @ 2023-09-08 12:32 UTC (permalink / raw)
  To: igt-dev
  Cc: intel-gfx, Dominik Karol Piątkowski, Kamil Konieczny,
	Janusz Krzysztofik, Isabella Basso, intel-xe

v2: Fix incorrect and missing includes in the test source file,
  - add license and copyright clauses to the test source file.

Janusz Krzysztofik (17):
  lib/kunit: Drop unused file stream
  lib/kunit: Stop loading kunit module explicitly
  lib/kunit: Fix struct kmod_module kunit_kmod not freed
  lib/kunit: Optimize calls to igt_success/skip/fail()
  lib/kunit: Fix illegal igt_fail() calls inside subtest body
  lib/ktap: Make sure we fail on premature cancel
  lib/ktap: Don't ignore interrupt signals
  lib/kunit: Cancel KTP parser on module load failure
  lib/ktap: Drop is_running flag
  lib/ktap: Read /dev/kmsg in blocking mode
  lib/kunit: Fail / skip on kernel taint
  lib/ktap: Use IGT linked lists for storing KTAP results
  lib/ktap: Reimplement KTAP parser
  lib/kunit: Load test modules in background
  lib/kunit: Parse KTAP report from the main process thread
  lib/kunit: Strip "_test" or "_kunit" suffix from subtest names
  lib/kunit: Omit suite name prefix if the same as subtest name

 lib/igt_kmod.c              | 284 ++++++++----
 lib/igt_ktap.c              | 833 ++++++++++++------------------------
 lib/igt_ktap.h              |  28 +-
 lib/tests/igt_ktap_parser.c | 246 +++++++++++
 lib/tests/meson.build       |   1 +
 tests/drm_mm.c              |  42 +-
 6 files changed, 739 insertions(+), 695 deletions(-)
 create mode 100644 lib/tests/igt_ktap_parser.c

-- 
2.41.0


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

end of thread, other threads:[~2023-09-15 13:36 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-08 12:32 [Intel-xe] [PATCH i-g-t v2 00/17] Fix IGT Kunit implementation issues Janusz Krzysztofik
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 01/17] lib/kunit: Drop unused file stream Janusz Krzysztofik
2023-09-15 10:36   ` [Intel-xe] [igt-dev] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 02/17] lib/kunit: Stop loading kunit module explicitly Janusz Krzysztofik
2023-09-15 10:36   ` [Intel-xe] [igt-dev] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 03/17] lib/kunit: Fix struct kmod_module kunit_kmod not freed Janusz Krzysztofik
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 04/17] lib/kunit: Optimize calls to igt_success/skip/fail() Janusz Krzysztofik
2023-09-11  8:49   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 05/17] lib/kunit: Fix illegal igt_fail() calls inside subtest body Janusz Krzysztofik
2023-09-11  8:52   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 06/17] lib/ktap: Make sure we fail on premature cancel Janusz Krzysztofik
2023-09-11  8:55   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 07/17] lib/ktap: Don't ignore interrupt signals Janusz Krzysztofik
2023-09-11  9:01   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-13 14:04     ` Janusz Krzysztofik
2023-09-15 12:25       ` Mauro Carvalho Chehab
2023-09-15 13:06         ` Janusz Krzysztofik
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 08/17] lib/kunit: Cancel KTP parser on module load failure Janusz Krzysztofik
2023-09-11  9:02   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 09/17] lib/ktap: Drop is_running flag Janusz Krzysztofik
2023-09-11  9:03   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 10/17] lib/ktap: Read /dev/kmsg in blocking mode Janusz Krzysztofik
2023-09-15 10:42   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 11/17] lib/kunit: Fail / skip on kernel taint Janusz Krzysztofik
2023-09-15 10:43   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 12/17] lib/ktap: Use IGT linked lists for storing KTAP results Janusz Krzysztofik
2023-09-15 10:44   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 13/17] lib/ktap: Reimplement KTAP parser Janusz Krzysztofik
2023-09-15 11:45   ` [Intel-xe] [igt-dev] " Mauro Carvalho Chehab
2023-09-15 12:28   ` [Intel-xe] [Intel-gfx] " Mauro Carvalho Chehab
2023-09-15 13:09     ` Janusz Krzysztofik
2023-09-15 13:35       ` Janusz Krzysztofik
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 14/17] lib/kunit: Load test modules in background Janusz Krzysztofik
2023-09-15 12:11   ` [Intel-xe] [igt-dev] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 15/17] lib/kunit: Parse KTAP report from the main process thread Janusz Krzysztofik
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 16/17] lib/kunit: Strip "_test" or "_kunit" suffix from subtest names Janusz Krzysztofik
2023-09-15 11:42   ` [Intel-xe] [igt-dev] " Mauro Carvalho Chehab
2023-09-08 12:32 ` [Intel-xe] [PATCH i-g-t v2 17/17] lib/kunit: Omit suite name prefix if the same as subtest name Janusz Krzysztofik
2023-09-08 14:45 ` [Intel-xe] ✗ CI.Patch_applied: failure for Fix IGT Kunit implementation issues (rev2) Patchwork

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).