From patchwork Thu Jun 4 14:31:03 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paulo Zanoni X-Patchwork-Id: 6547641 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.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id AA7D8C0020 for ; Thu, 4 Jun 2015 14:32:04 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D5D5A2060A for ; Thu, 4 Jun 2015 14:32:03 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id CD80E205FC for ; Thu, 4 Jun 2015 14:32:02 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7078A6E364; Thu, 4 Jun 2015 07:32:02 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-qk0-f178.google.com (mail-qk0-f178.google.com [209.85.220.178]) by gabe.freedesktop.org (Postfix) with ESMTP id 8F4B46E364 for ; Thu, 4 Jun 2015 07:32:00 -0700 (PDT) Received: by qkhg32 with SMTP id g32so24657843qkh.0 for ; Thu, 04 Jun 2015 07:32:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=MP7UZavrvjN1UjS8NDCUNOVDmlUEnOZt/gL83FMVIP8=; b=IK1Dk/mVCjVoc3A1+KZNes9bl5wIRFRd4nvG35B3cFWH2dkNhhzbkhvbCiZS9QJWcI rVed1L662dh85lFkzRWs2XEsIC/YG6LCye/Ny1lyvMh2Qmw633/5VO86LJmS0YpyoqJF dX2EO8uoQiYbryISp2z+G1yQLAnixoYD41CiY/S9l9XoRlkkxHt3BCd64HvVDuczUdIe TBce4n901cBa8ynXJMM0ja96+M9Wxkw7NqnXKk7mrvdcZda2UQot+Yr+m3qM7wjoEDE5 Q+nXNVBgi4Yq0C6+JYoBUAQHZ7H819eWMKr3DG87XFETGN0Nl0hboHuLPD4eXL7IMRN+ hfLQ== X-Received: by 10.140.196.129 with SMTP id r123mr45206861qha.93.1433428320224; Thu, 04 Jun 2015 07:32:00 -0700 (PDT) Received: from localhost.localdomain ([177.92.20.165]) by mx.google.com with ESMTPSA id f33sm2445470qkf.7.2015.06.04.07.31.58 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 04 Jun 2015 07:31:59 -0700 (PDT) From: Paulo Zanoni To: intel-gfx@lists.freedesktop.org Date: Thu, 4 Jun 2015 11:31:03 -0300 Message-Id: <1433428266-1867-1-git-send-email-przanoni@gmail.com> X-Mailer: git-send-email 2.1.4 Cc: Paulo Zanoni Subject: [Intel-gfx] [PATCH igt 1/4] tests/template: add IGT_TEST_DESCRIPTION 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.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, 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 From: Paulo Zanoni So people that write tests based on the template don't forget to use the macro. Signed-off-by: Paulo Zanoni Acked-by: Daniel Vetter --- tests/template.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/template.c b/tests/template.c index 24fd850..4b5794b 100644 --- a/tests/template.c +++ b/tests/template.c @@ -26,6 +26,8 @@ #include "drmtest.h" +IGT_TEST_DESCRIPTION("Template test."); + /* * Note that test function (and code called by them) should generally not return * a variable indicating success/failure. Instead use the igt_require/igt_assert