From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752660AbbCVKO5 (ORCPT ); Sun, 22 Mar 2015 06:14:57 -0400 Received: from terminus.zytor.com ([198.137.202.10]:57254 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752120AbbCVKOz (ORCPT ); Sun, 22 Mar 2015 06:14:55 -0400 Date: Sun, 22 Mar 2015 03:14:36 -0700 From: tip-bot for Yunlong Song Message-ID: Cc: acme@redhat.com, a.p.zijlstra@chello.nl, linux-kernel@vger.kernel.org, mingo@kernel.org, paulus@samba.org, hpa@zytor.com, yunlong.song@huawei.com, wangnan0@huawei.com, jolsa@kernel.org, tglx@linutronix.de Reply-To: paulus@samba.org, mingo@kernel.org, linux-kernel@vger.kernel.org, a.p.zijlstra@chello.nl, acme@redhat.com, jolsa@kernel.org, tglx@linutronix.de, wangnan0@huawei.com, yunlong.song@huawei.com, hpa@zytor.com In-Reply-To: <1426821638-11227-3-git-send-email-yunlong.song@huawei.com> References: <1426821638-11227-3-git-send-email-yunlong.song@huawei.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf build: Add config/feature-checks/ *.output to the .gitignore file Git-Commit-ID: 1c30f546f3b7a1ac8b002dc3b3e8f4e26d195fa0 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 1c30f546f3b7a1ac8b002dc3b3e8f4e26d195fa0 Gitweb: http://git.kernel.org/tip/1c30f546f3b7a1ac8b002dc3b3e8f4e26d195fa0 Author: Yunlong Song AuthorDate: Fri, 20 Mar 2015 11:20:38 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 20 Mar 2015 17:49:52 -0300 perf build: Add config/feature-checks/*.output to the .gitignore file They are all auto-generated files during the perf building. Before this patch: $ git status Untracked files: (use "git add ..." to include in what will be committed) config/feature-checks/test-all.make.output config/feature-checks/test-backtrace.make.output config/feature-checks/test-bionic.make.output config/feature-checks/test-dwarf.make.output config/feature-checks/test-fortify-source.make.output config/feature-checks/test-glibc.make.output config/feature-checks/test-gtk2-infobar.make.output config/feature-checks/test-gtk2.make.output config/feature-checks/test-libaudit.make.output config/feature-checks/test-libbabeltrace.make.output config/feature-checks/test-libbfd.make.output config/feature-checks/test-libdw-dwarf-unwind.make.output config/feature-checks/test-libelf-getphdrnum.make.output config/feature-checks/test-libelf-mmap.make.output config/feature-checks/test-libelf.make.output config/feature-checks/test-libnuma.make.output config/feature-checks/test-libperl.make.output config/feature-checks/test-libpython-version.make.output config/feature-checks/test-libpython.make.output config/feature-checks/test-libslang.make.output config/feature-checks/test-libunwind.make.output config/feature-checks/test-pthread-attr-setaffinity-np.make.output config/feature-checks/test-stackprotector-all.make.output config/feature-checks/test-sync-compare-and-swap.make.output config/feature-checks/test-timerfd.make.output config/feature-checks/test-zlib.make.output After this patch: $ git status nothing to commit, working directory clean Signed-off-by: Yunlong Song Tested-by: Arnaldo Carvalho de Melo Acked-by: Jiri Olsa Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Wang Nan Link: http://lkml.kernel.org/r/1426821638-11227-3-git-send-email-yunlong.song@huawei.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/config/feature-checks/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/perf/config/feature-checks/.gitignore b/tools/perf/config/feature-checks/.gitignore index 80f3da0..09b335b 100644 --- a/tools/perf/config/feature-checks/.gitignore +++ b/tools/perf/config/feature-checks/.gitignore @@ -1,2 +1,3 @@ *.d *.bin +*.output