From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Subject: [PATCH v2 1/7] gitignore: Ignore files generated by "make coverage" Date: Sun, 25 Jul 2010 14:40:55 +0000 Message-ID: <1280068861-17701-2-git-send-email-avarab@gmail.com> References: <1280068861-17701-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 16:41:36 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 1Od2OV-0001DE-To for gcvg-git-2@lo.gmane.org; Sun, 25 Jul 2010 16:41:36 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751435Ab0GYOlS convert rfc822-to-quoted-printable (ORCPT ); Sun, 25 Jul 2010 10:41:18 -0400 Received: from mail-ey0-f174.google.com ([209.85.215.174]:40979 "EHLO mail-ey0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751286Ab0GYOlQ (ORCPT ); Sun, 25 Jul 2010 10:41:16 -0400 Received: by eya25 with SMTP id 25so327671eya.19 for ; Sun, 25 Jul 2010 07:41:15 -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=mKiEi9PcPkzKtrur+zz+bSW/G8ZANcmy/PZEBTfNCXo=; b=RqnPrwBQ78b/2pNjGPh5IUGa5LLe7hOrGyR0LgqE/Rh3591pjRNPZSMYvp58PqPOZo wA8tOYT9O0e4ST6Ga4BfnFxh7chYHDPrnWDspqBmGeYQkr9vKoEsEzzJCGCbcbTBbcL2 iI2mM0WG8HcJaz6nm+xpYxILiGO7Y5u5VDGCc= 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=Jf+S3RdzI5oHpWji3/1z9le5A3emm0nBHB0DIRK9U2ganNMWXbh7tClJN1mremErHd ai+u/ncla27MUKV0ioFm/Qswe0zLsnSlbA/9Xzy1hDN11uzE8DHnyTdRz33wUc2h+Tnz f0H2G5kLjoASe61WeXEMyDxK9MhfyzcAcChS4= Received: by 10.213.2.204 with SMTP id 12mr5318949ebk.98.1280068874212; Sun, 25 Jul 2010 07:41:14 -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 x54sm3977142eeh.23.2010.07.25.07.41.12 (version=SSLv3 cipher=RC4-MD5); Sun, 25 Jul 2010 07:41:13 -0700 (PDT) X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1280068861-17701-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..0e61845 100644 --- a/.gitignore +++ b/.gitignore @@ -204,3 +204,7 @@ *.pdb /Debug/ /Release/ +*.gcda +*.gcno +*.gcov +/coverage-untested-functions --=20 1.7.0.4