From: Swati Sharma <swati2.sharma@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: rename subtests
Date: Sat, 23 Sep 2023 14:13:55 +0530 [thread overview]
Message-ID: <20230923084355.434574-1-swati2.sharma@intel.com> (raw)
Align subtests names with other tests.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_plane_scaling.c | 54 +++++++++++++++++++--------------------
1 file changed, 27 insertions(+), 27 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 299f55960..25a57e6f1 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -72,37 +72,37 @@ const struct {
} scaler_with_pixel_format_tests[] = {
{
"Tests upscaling with pixel formats, from 20x20 fb.",
- "plane-upscale-with-pixel-format-20x20",
+ "plane-upscale-20x20-with-pixel-format",
0.0,
true,
},
{
"Tests upscaling with pixel formats for 0.25 scaling factor.",
- "plane-upscale-with-pixel-format-factor-0-25",
+ "plane-upscale-factor-0-25-with-pixel-format",
0.25,
true,
},
{
"Tests downscaling with pixel formats for 0.25 scaling factor.",
- "plane-downscale-with-pixel-format-factor-0-25",
+ "plane-downscale-factor-0-25-with-pixel-format",
0.25,
false,
},
{
"Tests downscaling with pixel formats for 0.5 scaling factor.",
- "plane-downscale-with-pixel-format-factor-0-5",
+ "plane-downscale-factor-0-5-with-pixel-format",
0.5,
false,
},
{
"Tests downscaling with pixel formats for 0.75 scaling factor.",
- "plane-downscale-with-pixel-format-factor-0-75",
+ "plane-downscale-factor-0-75-with-pixel-format",
0.75,
false,
},
{
"Tests scaling with pixel formats, unity scaling.",
- "plane-scaler-with-pixel-format-unity-scaling",
+ "plane-scaler-unity-scaling-with-pixel-format",
1.0,
true,
},
@@ -116,37 +116,37 @@ const struct {
} scaler_with_rotation_tests[] = {
{
"Tests upscaling with rotation, from 20x20 fb.",
- "plane-upscale-with-rotation-20x20",
+ "plane-upscale-20x20-with-rotation",
0.0,
true,
},
{
"Tests upscaling with rotation for 0.25 scaling factor.",
- "plane-upscale-with-rotation-factor-0-25",
+ "plane-upscale-factor-0-25-with-rotation",
0.25,
true,
},
{
"Tests downscaling with rotation for 0.25 scaling factor.",
- "plane-downscale-with-rotation-factor-0-25",
+ "plane-downscale-factor-0-25-with-rotation",
0.25,
false,
},
{
"Tests downscaling with rotation for 0.5 scaling factor.",
- "plane-downscale-with-rotation-factor-0-5",
+ "plane-downscale-factor-0-5-with-rotation",
0.5,
false,
},
{
"Tests downscaling with rotation for 0.75 scaling factor.",
- "plane-downscale-with-rotation-factor-0-75",
+ "plane-downscale-factor-0-75-with-rotation",
0.75,
false,
},
{
"Tests scaling with rotation, unity scaling.",
- "plane-scaler-with-rotation-unity-scaling",
+ "plane-scaler-unity-scaling-with-rotation",
1.0,
true,
},
@@ -160,37 +160,37 @@ const struct {
} scaler_with_modifiers_tests[] = {
{
"Tests upscaling with modifiers, from 20x20 fb.",
- "plane-upscale-with-modifiers-20x20",
+ "plane-upscale-20x20-with-modifiers",
0.0,
true,
},
{
"Tests upscaling with modifiers for 0.25 scaling factor.",
- "plane-upscale-with-modifiers-factor-0-25",
+ "plane-upscale-factor-0-25-with-modifiers",
0.25,
true,
},
{
"Tests downscaling with modifiers for 0.25 scaling factor.",
- "plane-downscale-with-modifiers-factor-0-25",
+ "plane-downscale-factor-0-25-with-modifiers",
0.25,
false,
},
{
"Tests downscaling with modifiers for 0.5 scaling factor.",
- "plane-downscale-with-modifiers-factor-0-5",
+ "plane-downscale-factor-0-5-with-modifiers",
0.5,
false,
},
{
"Tests downscaling with modifiers for 0.75 scaling factor.",
- "plane-downscale-with-modifiers-factor-0-75",
+ "plane-downscale-factor-0-75-with-modifiers",
0.75,
false,
},
{
"Tests scaling with modifiers, unity scaling.",
- "plane-scaler-with-modifiers-unity-scaling",
+ "plane-scaler-unity-scaling-with-modifiers",
1.0,
true,
},
@@ -530,7 +530,7 @@ static const uint64_t modifiers[] = {
};
/**
- * SUBTEST: plane-scaler-with-modifiers-unity-scaling
+ * SUBTEST: plane-scaler-unity-scaling-with-modifiers
* Description: Tests scaling with modifiers, unity scaling.
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -544,7 +544,7 @@ static const uint64_t modifiers[] = {
* Mega feature: General Display Features
* Test category: functionality test
*
- * SUBTEST: plane-upscale-with-modifiers-%s
+ * SUBTEST: plane-upscale-%s-with-modifiers
* Description: Tests upscaling with modifiers %arg[1].
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -558,7 +558,7 @@ static const uint64_t modifiers[] = {
*/
/**
- * SUBTEST: plane-downscale-with-modifiers-factor-%s
+ * SUBTEST: plane-downscale-factor-%s-with-modifiers
* Description: Tests downscaling with modifiers for %arg[1] scaling factor.
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -604,7 +604,7 @@ static void test_scaler_with_modifier_pipe(data_t *d,
}
/**
- * SUBTEST: plane-scaler-with-rotation-unity-scaling
+ * SUBTEST: plane-scaler-unity-scaling-with-rotation
* Description: Tests scaling with rotation, unity scaling.
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -618,7 +618,7 @@ static void test_scaler_with_modifier_pipe(data_t *d,
* Mega feature: General Display Features
* Test category: functionality test
*
- * SUBTEST: plane-upscale-with-rotation-%s
+ * SUBTEST: plane-upscale-%s-with-rotation
* Description: Tests upscaling with rotation %arg[1].
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -632,7 +632,7 @@ static void test_scaler_with_modifier_pipe(data_t *d,
*/
/**
- * SUBTEST: plane-downscale-with-rotation-factor-%s
+ * SUBTEST: plane-downscale-factor-%s-with-rotation
* Description: Tests downscaling with rotation for %arg[1] scaling factor.
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -679,7 +679,7 @@ static void test_scaler_with_rotation_pipe(data_t *d,
}
/**
- * SUBTEST: plane-scaler-with-pixel-format-unity-scaling
+ * SUBTEST: plane-scaler-unity-scaling-with-pixel-format
* Description: Tests scaling with pixel formats, unity scaling.
* Driver requirement: i915, xe
* Functionality: pixel_formats, plane, scaling
@@ -693,7 +693,7 @@ static void test_scaler_with_rotation_pipe(data_t *d,
* Mega feature: General Display Features
* Test category: functionality test
*
- * SUBTEST: plane-upscale-with-pixel-format-%s
+ * SUBTEST: plane-upscale-%s-with-pixel-format
* Description: Tests upscaling with pixel formats %arg[1].
* Driver requirement: i915, xe
* Functionality: pixel_formats, plane, scaling
@@ -707,7 +707,7 @@ static void test_scaler_with_rotation_pipe(data_t *d,
*/
/**
- * SUBTEST: plane-downscale-with-pixel-format-factor-%s
+ * SUBTEST: plane-downscale-factor-%s-with-pixel-format
* Description: Tests downscaling with pixel formats for %arg[1] scaling factor.
* Driver requirement: i915, xe
* Functionality: pixel_formats, plane, scaling
--
2.25.1
next reply other threads:[~2023-09-23 8:43 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-23 8:43 Swati Sharma [this message]
2023-09-23 9:38 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_plane_scaling: rename subtests Patchwork
2023-09-23 9:41 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-24 15:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-09-26 15:47 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
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=20230923084355.434574-1-swati2.sharma@intel.com \
--to=swati2.sharma@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/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