From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Subject: [PATCH 1/6] gitignore: Ignore files generated by "make coverage" Date: Sat, 24 Jul 2010 20:50:58 +0000 Message-ID: <1280004663-4887-2-git-send-email-avarab@gmail.com> References: <1280004663-4887-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 , =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Sat Jul 24 22:51:54 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 1OclhJ-0007bl-UQ for gcvg-git-2@lo.gmane.org; Sat, 24 Jul 2010 22:51:54 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756462Ab0GXUvl convert rfc822-to-quoted-printable (ORCPT ); Sat, 24 Jul 2010 16:51:41 -0400 Received: from mail-ew0-f46.google.com ([209.85.215.46]:63711 "EHLO mail-ew0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756500Ab0GXUvk (ORCPT ); Sat, 24 Jul 2010 16:51:40 -0400 Received: by ewy23 with SMTP id 23so496366ewy.19 for ; Sat, 24 Jul 2010 13:51:38 -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=YmSIWuzdiuyak0/k52fXYv40VL1tcMNwF7bem5chx7M=; b=KDx++TUipXMihlly3z7DfnQCL/Kod86A+Y+Dx7Wfamy9UzE/0Bofhlqtg0IWar+EfB TBlUenF4r7iQsnEJVyB/bTlgOnga8sVskA2xUzDV89CyMOcqxeeZVK6fn2DURvvprMJU LOZErRo1W+7ww9I99pQXqV1yMlpsAquKVHOOo= 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=CYJhD2Odi2icv5ZtgYpihhdh+mfYeh1wupjZgEz7LFhfbWhZDygJk8TdRJuD8OqBhS iAnEe/nDUirxLRSRj6q3tY5AmyI1ugKzsvn9pwdmNKbVTWe/lcDsWeYQs2AINqS3PEY8 W7oOLbeCMHif404VJtTpQsBgScfOZy9yU84kQ= Received: by 10.213.105.207 with SMTP id u15mr2044682ebo.94.1280004698546; Sat, 24 Jul 2010 13:51:38 -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 a48sm2701243eei.6.2010.07.24.13.51.36 (version=SSLv3 cipher=RC4-MD5); Sat, 24 Jul 2010 13:51:37 -0700 (PDT) X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1280004663-4887-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 those. I'm not simply ignoring all *.gcda *.gcno *.gcov since I'd like to be surprised if they start showing up in unexpected places. Signed-off-by: =C3=86var Arnfj=C3=B6r=C3=B0 Bjarmason --- .gitignore | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 14e2b6b..f836a45 100644 --- a/.gitignore +++ b/.gitignore @@ -204,3 +204,16 @@ *.pdb /Debug/ /Release/ +/*.gcda +/*.gcno +/*.gcov +/builtin/*.gcda +/builtin/*.gcno +/builtin/*.gcov +/xdiff/*.gcda +/xdiff/*.gcno +/xdiff/*.gcov +/compat/*.gcda +/compat/*.gcno +/compat/*.gcov +/coverage-untested-functions --=20 1.7.0.4