From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Subject: [PATCH v3 1/7] gitignore: Ignore files generated by "make coverage" Date: Sun, 25 Jul 2010 19:52:39 +0000 Message-ID: <1280087565-24671-2-git-send-email-avarab@gmail.com> References: <1280087565-24671-1-git-send-email-avarab@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Junio C Hamano , Thomas Rast , Jonathan Nieder , =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Sun Jul 25 21:53:18 2010 Return-path: Envelope-to: gcvg-git-2@lo.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Od7G9-0003sr-Qw for gcvg-git-2@lo.gmane.org; Sun, 25 Jul 2010 21:53:18 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751344Ab0GYTxG convert rfc822-to-quoted-printable (ORCPT ); Sun, 25 Jul 2010 15:53:06 -0400 Received: from mail-ew0-f46.google.com ([209.85.215.46]:49624 "EHLO mail-ew0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750888Ab0GYTxE (ORCPT ); Sun, 25 Jul 2010 15:53:04 -0400 Received: by ewy23 with SMTP id 23so646045ewy.19 for ; Sun, 25 Jul 2010 12:53:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references:mime-version :content-type:content-transfer-encoding; bh=bnqKjKsnbE/UFG2xmL91DuhjshoU8vUhiuyKMmW5e5w=; b=KtoR5trD5RojZ/vE0n68bXSuJwY5p6AJ6ODTDTIivt1XDaLGftK0+hscOU6G5UgOY7 Z4IWAsN21r5q04a4gUj0UwATpQQcpqZ0SM03Rr5rJSjaGNjA4+ebYSiY36ib/TBYdB1X Ehu9g5m2LTOe7G1rGtrQ35WyPJBFQykSNDbYA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :mime-version:content-type:content-transfer-encoding; b=geXAmGZzgDnm4rg+ZPi/Q//WTblmE3CeZ+u4xfPm4A7dgPn39w8zKRLgGULePX+lSu 9Mja2As0PcT70BbpYqNqltj99LfhMOu2ke7+Xf893B56sDpMVDFMxNVa1NT2S78SeQ9m xJt672ZR2Qyn5QLWLF4f8sT2iOXrs3EXeHr4I= Received: by 10.213.114.67 with SMTP id d3mr2742646ebq.48.1280087582335; Sun, 25 Jul 2010 12:53:02 -0700 (PDT) Received: from localhost.localdomain (dslb-088-067-237-210.pools.arcor-ip.net [88.67.237.210]) by mx.google.com with ESMTPS id a48sm4369452eei.19.2010.07.25.12.53.00 (version=SSLv3 cipher=RC4-MD5); Sun, 25 Jul 2010 12:53:01 -0700 (PDT) X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1280087565-24671-1-git-send-email-avarab@gmail.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: The "make coverage" support added by Thomas Rast in 901c369af5 didn't contain a corresponding patch to patch .gitignore. Change gitignore to ignore the *.gcda, *.gcno and *.gcov files generated by GCC and our coverage invocations. Signed-off-by: =C3=86var Arnfj=C3=B6r=C3=B0 Bjarmason --- .gitignore | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 14e2b6b..57f79ef 100644 --- a/.gitignore +++ b/.gitignore @@ -181,6 +181,10 @@ *.[aos] *.py[co] .depend/ +*.gcda +*.gcno +*.gcov +/coverage-untested-functions *+ /config.mak /autom4te.cache --=20 1.7.0.4