From patchwork Thu Oct 30 16:49:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5198951 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 88D469F30B for ; Thu, 30 Oct 2014 16:49:19 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B692620173 for ; Thu, 30 Oct 2014 16:49:18 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id E2C0C2015D for ; Thu, 30 Oct 2014 16:49:17 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5E0816E3B2; Thu, 30 Oct 2014 09:49:17 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by gabe.freedesktop.org (Postfix) with ESMTP id 4113C6E0B0 for ; Thu, 30 Oct 2014 09:49:12 -0700 (PDT) Received: by mail-wi0-f172.google.com with SMTP id bs8so5105010wib.17 for ; Thu, 30 Oct 2014 09:49:11 -0700 (PDT) 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=4dwFTGQEDhsmTCdwbvod0JEomRT3vT590uhfRrd02Ws=; b=POWpLkxEk5Ln3BKMHD71U7PPQQK+Hz59mgDCmN9kYSzIF4DQDBL7LIUAechqmWOvHY /7lKlJvYpPc20apxsJjWKsukrjuGKjn27GkUd6X1iEox8L9Y7TaMJGjwtvs2uLzU7wBk zk7CFYwF3xJiIY9Uz19dZb/cfTaV6ZBa0NBTx0CKBsW6Gy6PSxo6cWLwclrJE7FJEx4U MJszUmQev/vteAXLxVF015GliUhc2GtLE2WXAjB6mZ3HhgX5c6UsclZpxfzEjm7dCsEK 5lt45eRY35snk6keIL75ZlkNRpTs73nbGNM4Wh9oWeVlfcfUVIzzOKHZYv3G4cnxabDp 0FWA== X-Gm-Message-State: ALoCoQnrZUyxpNkRZ78hSy5ZdPV3zRsPstHmOpoSftXGvGGk93jUTwt+k+wTMUSWrB1xBRAtEjxM X-Received: by 10.180.13.11 with SMTP id d11mr45084155wic.19.1414687751458; Thu, 30 Oct 2014 09:49:11 -0700 (PDT) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id k10sm9264702wjb.28.2014.10.30.09.49.10 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 30 Oct 2014 09:49:10 -0700 (PDT) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Thu, 30 Oct 2014 16:49:01 +0000 Message-Id: <1414687741-7830-7-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1414687741-7830-1-git-send-email-thomas.wood@intel.com> References: <1414687741-7830-1-git-send-email-thomas.wood@intel.com> Subject: [Intel-gfx] [PATCH i-g-t v2 6/6] tests/drm_lib.sh: add a "--help-description" option 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.8 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, 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 --- tests/drm_lib.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/drm_lib.sh b/tests/drm_lib.sh index 6a8a310..c50664c 100755 --- a/tests/drm_lib.sh +++ b/tests/drm_lib.sh @@ -12,11 +12,16 @@ for arg in $@ ; do --debug) IGT_LOG_LEVEL=debug ;; + --help-description) + echo $IGT_TEST_DESCRIPTION + exit 0 + ;; --help) echo "Usage: `basename $0` [OPTIONS]" echo " --list-subtests" echo " --run-subtest " echo " --debug" + echo " --help-description" echo " --help" exit 0 ;;