From patchwork Fri Nov 18 23:51:37 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13049238 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 54EBCC4332F for ; Fri, 18 Nov 2022 23:52:15 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B918310E82E; Fri, 18 Nov 2022 23:52:13 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by gabe.freedesktop.org (Postfix) with ESMTPS id 73CD110E82E for ; Fri, 18 Nov 2022 23:52:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:In-Reply-To:References; bh=89XXvY4dsgBt2/Us4Xyks7e7rFIbM6mgsH6+kbDSQ8o=; b=bDKgMPTN/Ug6MgjY4asNnBKafQ ESAj1SOgAzkm2lm2JdZMGJe5Io62qphVNB/UxMEovymCX7H04KoviT9cUmmB0HIXAflCJ6Cg1/IDo 88ZZGGCkpWjBGn4pac/Hnd0J7/COKz+dCUTfWCpaMCFVZtlXNupnJs6LbVbLfNSz+Poj1JnRyMqqf g+e9NTKnteHZZLuTV/2XJiZiIalmm+ctOAtgVcFj11rREGSlXxqHznNHeKC6E8ebkXUS3CsZuppmJ OeLL6S2Nc6LFjkqwhbjEEr85yDCXPGlCHNOv/2F07X3gOqKrgRT8z6/PuVEWXna4xyHZXa4iqsFtz ur0TzehA==; Received: from [2601:1c2:d80:3110::a2e7] (helo=casper.infradead.org) by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1owB9C-002nfy-J4; Fri, 18 Nov 2022 23:51:52 +0000 From: Randy Dunlap To: linux-doc@vger.kernel.org Subject: [PATCH] drm/doc: make drm-uapi igt-tests more readable Date: Fri, 18 Nov 2022 15:51:37 -0800 Message-Id: <20221118235137.6859-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Gabriela Bittencourt , Thomas Zimmermann , Jonathan Corbet , Rodrigo Siqueira , Randy Dunlap , dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Correct grammar and make the use of the igt-tests more readable. Signed-off-by: Randy Dunlap Cc: Gabriela Bittencourt Cc: Rodrigo Siqueira Cc: David Airlie Cc: Daniel Vetter Cc: Maarten Lankhorst Cc: Maxime Ripard Cc: Thomas Zimmermann Cc: dri-devel@lists.freedesktop.org Cc: Jonathan Corbet --- Documentation/gpu/drm-uapi.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff -- a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst --- a/Documentation/gpu/drm-uapi.rst +++ b/Documentation/gpu/drm-uapi.rst @@ -402,19 +402,19 @@ It's possible to run the IGT-tests in a 1. Use IGT inside a VM 2. Use IGT from the host machine and write the results in a shared directory. -As follow, there is an example of using a VM with a shared directory with -the host machine to run igt-tests. As an example it's used virtme:: +Following is an example of using a VM with a shared directory with +the host machine to run igt-tests. This example uses virtme:: $ virtme-run --rwdir /path/for/shared_dir --kdir=path/for/kernel/directory --mods=auto -Run the igt-tests in the guest machine, as example it's ran the 'kms_flip' +Run the igt-tests in the guest machine. This example runs the 'kms_flip' tests:: $ /path/for/igt-gpu-tools/scripts/run-tests.sh -p -s -t "kms_flip.*" -v -In this example, instead of build the igt_runner, Piglit is used -(-p option); it's created html summary of the tests results and it's saved -in the folder "igt-gpu-tools/results"; it's executed only the igt-tests +In this example, instead of building the igt_runner, Piglit is used +(-p option). It creates an HTML summary of the test results and saves +them in the folder "igt-gpu-tools/results". It executes only the igt-tests matching the -t option. Display CRC Support