From patchwork Wed Oct 29 15:20:46 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5188881 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 6B230C11AC for ; Wed, 29 Oct 2014 15:20:57 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9E74020219 for ; Wed, 29 Oct 2014 15:20:56 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 751F8200ED for ; Wed, 29 Oct 2014 15:20:55 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4560F6E593; Wed, 29 Oct 2014 08:20:54 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) by gabe.freedesktop.org (Postfix) with ESMTP id 10C4B6E593 for ; Wed, 29 Oct 2014 08:20:51 -0700 (PDT) Received: by mail-wg0-f45.google.com with SMTP id x12so2141119wgg.32 for ; Wed, 29 Oct 2014 08:20:50 -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; bh=DVSC4xUeJKtDzf6GZWpH836mxP0V7UmzXKJiIFeHq7Q=; b=LcLcT31JLaWBDfdfYaxXWYNRPKZLM3H5c9pcN6TXC+RavL++hJ6sgQUAW481fl8eCn lvfua+6xLCoK5cmKKZsqpf3XUyK9X8k4hYImeWUWlXPrgVRdQiJki/NGb2VE8wOwfjeC E2FQTsurYr4eVAJ9K9Z43JluuvbFZwFrvpU3Aq/N5JvcaT2osjCVALSqVi7vicFc+UbT vSr9WbBtYzxRfP+Z/l4eTRfGnPMwHMlodS5fxd6vE7PyzO+hY/I01vLYHtLhITbFrTlT OdDCqS5U0y1ueitiX8XwV8sup1PDjQwh5DvE9fhDjCIevVKachEwvzgFWORHnGGv1klw QcKg== X-Gm-Message-State: ALoCoQl8I4fPMkdbgRNIb/ES8HkHHI1+jz6WtimYjmlo0/LE2qMirbZrOPCLSRu8POXMYptuYlHp X-Received: by 10.180.10.231 with SMTP id l7mr36996634wib.1.1414596050305; Wed, 29 Oct 2014 08:20:50 -0700 (PDT) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id au3sm5521301wjc.15.2014.10.29.08.20.49 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 29 Oct 2014 08:20:49 -0700 (PDT) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Wed, 29 Oct 2014 15:20:46 +0000 Message-Id: <1414596047-19397-1-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 Subject: [Intel-gfx] [PATCH i-g-t 1/2] lib/igt_core.h: fix igt_skip_on_f requirement message 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 --- lib/igt_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/igt_core.h b/lib/igt_core.h index b8f6702..5318c5e 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -397,7 +397,7 @@ void igt_exit(void) __attribute__((noreturn)); * information to help debugging test failures. */ #define igt_skip_on_f(expr, f...) do { \ - if ((expr)) igt_skip_check(#expr , f); \ + if ((expr)) igt_skip_check("!("#expr")", f); \ } while (0) /* fork support code */