summaryrefslogtreecommitdiff
path: root/tests/kms_ccs.c
diff options
context:
space:
mode:
authorDaniel Stone <daniels@collabora.com>2017-08-08 12:19:31 +0100
committerDaniel Stone <daniels@collabora.com>2017-08-10 10:47:18 +0100
commita7e6fa47a9357ac692e7c0ee032aa1c6705d5565 (patch)
tree22c8eb38389d3cb3b20c4e8342d81d8c142b3849 /tests/kms_ccs.c
parentc26aa98cdedd42b294f8ccb0edb0c5d403ffb82e (diff)
tests/kms_ccs: Reshuffle test name and loop
In preparation for also testing sprites. Signed-off-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'tests/kms_ccs.c')
-rw-r--r--tests/kms_ccs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
index 50bb2ad6..1a5cdcd4 100644
--- a/tests/kms_ccs.c
+++ b/tests/kms_ccs.c
@@ -342,13 +342,13 @@ igt_main
for (data.pipe = PIPE_A; data.pipe < IGT_MAX_PIPES; data.pipe++) {
data.flags = TEST_CRC;
- igt_subtest_f("pipe-%s-crc-basic", kmstest_pipe_name(data.pipe))
+ igt_subtest_f("pipe-%s-crc-primary-basic",
+ kmstest_pipe_name(data.pipe))
test(&data);
- }
- for (data.pipe = PIPE_A; data.pipe < IGT_MAX_PIPES; data.pipe++) {
- data.flags = TEST_CRC | TEST_ROTATE_180;
- igt_subtest_f("pipe-%s-crc-rotation-180", kmstest_pipe_name(data.pipe))
+ data.flags |= TEST_ROTATE_180;
+ igt_subtest_f("pipe-%s-crc-primary-rotation-180",
+ kmstest_pipe_name(data.pipe))
test(&data);
}