From: janga.rahul.kumar@intel.com
To: igt-dev@lists.freedesktop.org, ramadevi.gandi@intel.com,
janga.rahul.kumar@intel.com
Subject: [igt-dev] [PATCH] tests/xe/xe_query: Add subtest query-invalid-extension
Date: Wed, 26 Apr 2023 00:10:03 +0530 [thread overview]
Message-ID: <20230425184003.3089338-1-janga.rahul.kumar@intel.com> (raw)
From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Check query with invalid extension returns expected error code.
Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
---
tests/xe/xe_query.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/tests/xe/xe_query.c b/tests/xe/xe_query.c
index 3f038225..6c35730c 100644
--- a/tests/xe/xe_query.c
+++ b/tests/xe/xe_query.c
@@ -435,6 +435,23 @@ test_query_invalid_size(int fd)
igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), -1);
}
+/**
+ * SUBTEST: query-invalid-extension
+ * Description: Check query with invalid extension returns expected error code.
+ */
+static void
+test_query_invalid_extension(int fd)
+{
+ struct drm_xe_device_query query = {
+ .extensions = -1,
+ .query = DRM_XE_DEVICE_QUERY_CONFIG,
+ .size = 0,
+ .data = 0,
+ };
+
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), -1);
+}
+
igt_main
{
int xe;
@@ -468,6 +485,9 @@ igt_main
igt_subtest("query-invalid-size")
test_query_invalid_size(xe);
+ igt_subtest("query-invalid-extension")
+ test_query_invalid_extension(xe);
+
igt_fixture {
xe_device_put(xe);
close(xe);
--
2.25.1
next reply other threads:[~2023-04-25 18:38 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-25 18:40 janga.rahul.kumar [this message]
2023-04-26 10:12 ` [igt-dev] [PATCH] tests/xe/xe_query: Add subtest query-invalid-extension Zbigniew Kempczyński
2023-04-26 18:58 ` Kumar, Janga Rahul
2023-04-26 20:02 ` Zbigniew Kempczyński
2023-04-26 10:13 ` Zbigniew Kempczyński
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=20230425184003.3089338-1-janga.rahul.kumar@intel.com \
--to=janga.rahul.kumar@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=ramadevi.gandi@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox