From: <vitaly.prosyak@amd.com>
To: <igt-dev@lists.freedesktop.org>
Cc: <kamil.konieczny@linux.intel.com>, <pawel.sikora@intel.com>,
<jani.nikula@linux.intel.com>, <jesse.zhang@amd.com>,
<christian.koenig@amd.com>, <alexander.deucher@amd.com>,
Vitaly Prosyak <vitaly.prosyak@amd.com>
Subject: [PATCH v5 0/4] Add platform filtering framework for IGT tests
Date: Wed, 5 Aug 2026 16:35:25 -0400 [thread overview]
Message-ID: <20260805203608.148375-1-vitaly.prosyak@amd.com> (raw)
From: Vitaly Prosyak <vitaly.prosyak@amd.com>
This series introduces a generic platform filtering framework for IGT tests,
allowing tests to be skipped based on platform characteristics without modifying
test source code. Three filtering methods are supported with priority ordering:
built-in rules (highest), config file (recommended), and environment variable
(lowest).
v5 addresses review feedback from Kamil Konieczny:
- Replaced emoji with ASCII equivalents in documentation
- Removed Gerrit Change-Id metadata
- Restructured commit message per upstream standards
- Added Pawel Sikora to Cc list
Vitaly Prosyak (4):
lib: Add generic platform filtering framework
lib/amdgpu: Add AMD platform filtering backend
lib/igt_core: Enable automatic platform filtering in subtest execution
docs: Update platform filtering documentation per review feedback
docs/platform_filtering.md | 351 +++++++++++++++++++++++
lib/amdgpu/amd_platform.c | 328 +++++++++++++++++++++
lib/amdgpu/amd_platform.h | 53 ++++
lib/igt_core.c | 18 +-
lib/igt_platform_filter.c | 574 +++++++++++++++++++++++++++++++++++++
lib/igt_platform_filter.h | 124 ++++++++
lib/meson.build | 2 +
mkdocs.yml | 1 +
8 files changed, 1450 insertions(+), 1 deletion(-)
create mode 100644 docs/platform_filtering.md
create mode 100644 lib/amdgpu/amd_platform.c
create mode 100644 lib/amdgpu/amd_platform.h
create mode 100644 lib/igt_platform_filter.c
create mode 100644 lib/igt_platform_filter.h
--
2.43.0
next reply other threads:[~2026-08-05 20:38 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-05 20:35 vitaly.prosyak [this message]
2026-08-05 20:35 ` [PATCH v5 1/4] lib: Add generic platform filtering framework vitaly.prosyak
2026-08-05 20:35 ` [PATCH v5 2/4] lib/amdgpu: Add AMD platform filtering backend vitaly.prosyak
2026-08-05 20:35 ` [PATCH v5 3/4] lib/igt_core: Enable automatic platform filtering in subtest execution vitaly.prosyak
2026-08-05 20:35 ` [PATCH v5 4/4] docs: Update platform filtering documentation per review feedback vitaly.prosyak
2026-08-06 9:50 ` ✓ i915.CI.BAT: success for Add platform filtering framework for IGT tests (rev2) Patchwork
2026-08-06 9:58 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-06 16:11 ` ✗ i915.CI.Full: failure " Patchwork
2026-08-06 19:27 ` ✓ Xe.CI.FULL: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2026-08-05 20:28 [PATCH v5 0/4] Add platform filtering framework for IGT tests vitaly.prosyak
2026-08-13 16:30 ` vitaly prosyak
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=20260805203608.148375-1-vitaly.prosyak@amd.com \
--to=vitaly.prosyak@amd.com \
--cc=alexander.deucher@amd.com \
--cc=christian.koenig@amd.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=jani.nikula@linux.intel.com \
--cc=jesse.zhang@amd.com \
--cc=kamil.konieczny@linux.intel.com \
--cc=pawel.sikora@intel.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 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.