From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: drm/tests: Mark slow tests as slow Date: Fri, 27 Feb 2026 15:13:20 +1000 Message-ID: In-Reply-To: <20260224110310.1854608-1-mripard@kernel.org> References: <20260224110310.1854608-1-mripard@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Overall Series Review Subject: drm/tests: Mark slow tests as slow Author: Maxime Ripard Patches: 13 Reviewed: 2026-02-27T15:13:20.236229 --- This is a single, straightforward patch from Maxime Ripard that marks three DRM KUnit tests as slow using the `KUNIT_CASE_SLOW()` macro. The change is correct, well-scoped, and follows established KUnit conventions. The commit message is clear and concise. The `KUNIT_CASE_SLOW` macro (defined in `include/kunit/test.h:187`) sets the `attr.speed` to `KUNIT_SPEED_SLOW`, which allows test runners to filter out slow tests (those exceeding the 1-second threshold) for faster iteration during development. No issues found. This is a good cleanup patch. --- Generated by Claude Code Patch Reviewer