From: Ashutosh Dixit <ashutosh.dixit@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t 2/2] tests/kms_addfb_basic: Skip tiling subtests on device without fences
Date: Tue, 19 May 2020 12:13:46 -0700 [thread overview]
Message-ID: <20200519191346.17210-2-ashutosh.dixit@intel.com> (raw)
In-Reply-To: <20200519191346.17210-1-ashutosh.dixit@intel.com>
From: Vanshidhar Konda <vanshidhar.r.konda@intel.com>
Skip subtests that are testing interoperability of FB modifiers and
hardware tiling if the device does not support HW tiling.
Cc: Imre Deak <imre.deak@intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>
Signed-off-by: Vanshidhar Konda <vanshidhar.r.konda@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tests/kms_addfb_basic.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
index 666e7165e..1f637a61b 100644
--- a/tests/kms_addfb_basic.c
+++ b/tests/kms_addfb_basic.c
@@ -132,6 +132,7 @@ static void invalid_tests(int fd)
igt_subtest("clobberred-modifier") {
igt_require_intel(fd);
+ igt_require(gem_available_fences(fd) > 0);
f.flags = 0;
f.modifier[0] = 0;
gem_set_tiling(fd, gem_bo, I915_TILING_X, 512*4);
@@ -304,6 +305,7 @@ static void tiling_tests(int fd)
igt_subtest_group {
igt_fixture {
igt_require_intel(fd);
+ igt_require(gem_available_fences(fd) > 0);
tiled_x_bo = igt_create_bo_with_dimensions(fd, 1024, 1024,
DRM_FORMAT_XRGB8888, LOCAL_I915_FORMAT_MOD_X_TILED,
1024*4, NULL, NULL, NULL);
@@ -450,6 +452,7 @@ static void size_tests(int fd)
igt_subtest("bo-too-small-due-to-tiling") {
igt_require_intel(fd);
+ igt_require(gem_available_fences(fd) > 0);
gem_set_tiling(fd, gem_bo_small, I915_TILING_X, 1024*4);
igt_assert(drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &f) == -1 &&
errno == EINVAL);
@@ -502,6 +505,7 @@ static void addfb25_tests(int fd)
igt_subtest_group {
igt_fixture {
igt_require_intel(fd);
+ igt_require(gem_available_fences(fd) > 0);
gem_set_tiling(fd, gem_bo, I915_TILING_X, 1024*4);
igt_require_fb_modifiers(fd);
}
--
2.26.2.593.gb994622632
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next prev parent reply other threads:[~2020-05-19 19:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-19 19:13 [igt-dev] [PATCH i-g-t 1/2] tests/i915_fb_tiling: Check if device supports tiling Ashutosh Dixit
2020-05-19 19:13 ` Ashutosh Dixit [this message]
2020-05-19 19:42 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_addfb_basic: Skip tiling subtests on device without fences Chris Wilson
2020-05-19 19:37 ` [igt-dev] [PATCH i-g-t 1/2] tests/i915_fb_tiling: Check if device supports tiling Chris Wilson
2020-05-19 20:25 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
2020-05-20 7:06 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
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=20200519191346.17210-2-ashutosh.dixit@intel.com \
--to=ashutosh.dixit@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