From patchwork Fri Aug 5 13:03:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Lezcano X-Patchwork-Id: 3281 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id EDEA124073 for ; Fri, 5 Aug 2011 13:03:21 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id B5CFDA185CD for ; Fri, 5 Aug 2011 13:03:21 +0000 (UTC) Received: by qwb8 with SMTP id 8so1768594qwb.11 for ; Fri, 05 Aug 2011 06:03:21 -0700 (PDT) Received: by 10.229.231.66 with SMTP id jp2mr1703580qcb.83.1312549401148; Fri, 05 Aug 2011 06:03:21 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.6.73 with SMTP id 9cs47890qcy; Fri, 5 Aug 2011 06:03:20 -0700 (PDT) Received: by 10.216.8.204 with SMTP id 54mr1768649wer.92.1312549399513; Fri, 05 Aug 2011 06:03:19 -0700 (PDT) Received: from mtagate2.uk.ibm.com (mtagate2.uk.ibm.com [194.196.100.162]) by mx.google.com with ESMTPS id x47si6166692weq.2.2011.08.05.06.03.19 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 05 Aug 2011 06:03:19 -0700 (PDT) Received-SPF: neutral (google.com: 194.196.100.162 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) client-ip=194.196.100.162; Authentication-Results: mx.google.com; spf=neutral (google.com: 194.196.100.162 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) smtp.mail=daniel.lezcano@linaro.org Received: from d06nrmr1507.portsmouth.uk.ibm.com (d06nrmr1507.portsmouth.uk.ibm.com [9.149.38.233]) by mtagate2.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p75D3Ikb022513; Fri, 5 Aug 2011 13:03:18 GMT Received: from d06av07.portsmouth.uk.ibm.com (d06av07.portsmouth.uk.ibm.com [9.149.37.248]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p75D3H0p1863796; Fri, 5 Aug 2011 14:03:18 +0100 Received: from d06av07.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p75D3HrZ021870; Fri, 5 Aug 2011 07:03:17 -0600 Received: from smtp.lab.toulouse-stg.fr.ibm.com (srv01.lab.toulouse-stg.fr.ibm.com [9.101.4.1]) by d06av07.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p75D3H8K021859; Fri, 5 Aug 2011 07:03:17 -0600 Received: from localhost.localdomain (sig-9-146-235-102.de.ibm.com [9.146.235.102]) by smtp.lab.toulouse-stg.fr.ibm.com (Postfix) with ESMTP id A7B84210FB9; Fri, 5 Aug 2011 15:03:16 +0200 (CEST) From: Daniel Lezcano To: linaro-dev@lists.linaro.org Cc: vincent.guittot@linaro.org, amit.kucheria@linaro.org Subject: [pm-qa 1/5] fix error output to the log file Date: Fri, 5 Aug 2011 15:03:00 +0200 Message-Id: <1312549384-26580-1-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.7.4.1 Error messages have to go to the log file Signed-off-by: Daniel Lezcano --- cpufreq/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpufreq/Makefile b/cpufreq/Makefile index 5dfc00d..f52a1f4 100644 --- a/cpufreq/Makefile +++ b/cpufreq/Makefile @@ -25,10 +25,10 @@ TST=$(wildcard *.sh) LOG=$(TST:.sh=.log) -check: $(LOG) +check: uncheck $(LOG) %.log: %.sh - @./$< + @./$< 2> $@ clean: rm -f $(LOG)