From patchwork Fri Nov 28 13:45:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5403631 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 44DD8BEEBA for ; Fri, 28 Nov 2014 13:45:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 825DC201C0 for ; Fri, 28 Nov 2014 13:45:43 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 9077C20155 for ; Fri, 28 Nov 2014 13:45:42 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1B10A6E394; Fri, 28 Nov 2014 05:45:42 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by gabe.freedesktop.org (Postfix) with ESMTP id BE47D6EE51 for ; Fri, 28 Nov 2014 05:45:40 -0800 (PST) Received: by mail-wi0-f175.google.com with SMTP id l15so18656873wiw.8 for ; Fri, 28 Nov 2014 05:45:40 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=3KW8f4TtRqdlxIonVge89xN10LkP4XNlveju3+5JDqM=; b=O09Hme/Pfyf2twHCd4TFxXVmv/lwxgsUKKHNcjyMIquobKj5L8wlpzkS+QXsNPjHoE mBXhBy3WhrBDrafZ2YxVgxR2lwaH3mFP9Ak0mid+BwGCKIOGDENyOfdA5DVeEXhGfQuQ RLLumliZlkho5PwO1EENCWbS7HWEHulJoydfWEYuSm4PvlXCt+QgclTfYkAEygcVLFH7 URM231A4mhrUswcn33wD+yN137SiCd8xgA7pExlTGI3j1kvG3H4yVsvCfi3PvLx6SIhO yNaTXW8ILQKxXWN2j3bp6SqGVj+jlnt8ACrcH2SVOX3v9CqxzEJC+E9Sr8PSI9kB3HPT aFhQ== X-Gm-Message-State: ALoCoQm5fFS2lN33NcTJ2HY/uJaZ2r9kB/RnnWQK8IR38KOG8wVrFY1H19rpS3FjdPe/E6yMZNEU X-Received: by 10.180.80.133 with SMTP id r5mr60027666wix.20.1417182340006; Fri, 28 Nov 2014 05:45:40 -0800 (PST) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id fo12sm29621243wic.19.2014.11.28.05.45.38 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 28 Nov 2014 05:45:39 -0800 (PST) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Fri, 28 Nov 2014 13:45:30 +0000 Message-Id: <1417182334-20027-2-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1417182334-20027-1-git-send-email-thomas.wood@intel.com> References: <1417182334-20027-1-git-send-email-thomas.wood@intel.com> Subject: [Intel-gfx] [PATCH i-g-t 2/6] docs: add subtest lists to test descriptions X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Thomas Wood --- docs/reference/intel-gpu-tools/Makefile.am | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/reference/intel-gpu-tools/Makefile.am b/docs/reference/intel-gpu-tools/Makefile.am index cd9c771..d7ef4df 100644 --- a/docs/reference/intel-gpu-tools/Makefile.am +++ b/docs/reference/intel-gpu-tools/Makefile.am @@ -39,7 +39,16 @@ xml/igt_test_programs_%_description.xml: $(TESTLISTS) testprog=$(top_srcdir)/tests/$$test; \ fi; \ ./$$testprog --help-description >> $@; \ - echo "" >> $@; \ + echo "" >> $@; \ + if ./$$testprog --list-subtests > /dev/null ; then \ + echo "Subtests" >> $@; \ + echo "" >> $@; \ + for subtest in `./$$testprog --list-subtests`; do \ + echo "$$subtest" >> $@; \ + done; \ + echo "" >> $@; \ + fi; \ + echo "" >> $@; \ done; echo "" >> $@