From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by gabe.freedesktop.org (Postfix) with ESMTPS id A60A710E70A for ; Tue, 25 Apr 2023 12:34:06 +0000 (UTC) From: janga.rahul.kumar@intel.com To: igt-dev@lists.freedesktop.org, ramadevi.gandi@intel.com, janga.rahul.kumar@intel.com Date: Tue, 25 Apr 2023 18:06:03 +0530 Message-Id: <20230425123603.3069724-1-janga.rahul.kumar@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t] tests/xe/xe_query.c: Update subtest query-engines List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Janga Rahul Kumar Log engine instance and tile info along with engine type. Signed-off-by: Janga Rahul Kumar --- tests/xe/xe_query.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/xe/xe_query.c b/tests/xe/xe_query.c index 3f038225..161386d8 100644 --- a/tests/xe/xe_query.c +++ b/tests/xe/xe_query.c @@ -183,8 +183,9 @@ test_query_engines(int fd) xe_for_each_hw_engine(fd, hwe) { igt_assert(hwe); - igt_info("engine %d: %s\n", i++, - xe_engine_class_string(hwe->engine_class)); + igt_info("engine %d: %s, engine instance: %d , tile: TILE-%d\n", i++, + xe_engine_class_string(hwe->engine_class), hwe->engine_instance, + hwe->gt_id); } igt_assert(i > 0); -- 2.25.1