From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id B2D713858D3C for ; Thu, 28 Mar 2024 23:43:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B2D713858D3C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org B2D713858D3C Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=45.83.234.184 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1711669397; cv=none; b=Q9POnSC3DWmTlsUN+ukjhfTd/wpdkCgpOEZNQ4B3gyNIy5Ajpb+RQu+GULLwUqiheQbuPiuTv7aSj5em2LJXax5yAac0ZHILdk5GCNe4hAeLXSID2CGalK4086tCNbZRfJ0l8h8Jnyc0vpl3JE2va4kYDvj6wIpeoVURh81xdNI= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1711669397; c=relaxed/simple; bh=MWRxbp5krcR3fbaud7mSoGPfLwEsg2M/dc2C6XP4FQ8=; h=From:To:Subject:Date:Message-Id:MIME-Version; b=FLPMKMKasRCfjs2ws2h7gn5Iv84wVmtI3EwrD3rq+TgyV0sj88/dJLGSsgB6ld9hU1BYGSRrfXTS9AoKpjp0lwJYZ31sv6MS/KZtyuV0O2cs3suboEQAd4AVOfRNc+bG47U1E8JbkvdNWMZWjm1kLpGI6qJjWzsfjthFWeJDRG0= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from csb.redhat.com (deer0x03.wildebeest.org [172.31.17.133]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 47C7D300046F; Fri, 29 Mar 2024 00:43:13 +0100 (CET) Received: by csb.redhat.com (Postfix, from userid 10916) id BEA8FE1679; Fri, 29 Mar 2024 00:43:13 +0100 (CET) From: Mark Wielaard To: elfutils-devel@sourceware.org Cc: Mark Wielaard Subject: [PATCH] tests, config: Add more .gitignore files Date: Fri, 29 Mar 2024 00:43:08 +0100 Message-Id: <20240328234308.1032110-1-mark@klomp.org> X-Mailer: git-send-email 2.39.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-9.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Some new tests and one configure file weren't in .gitignore. Also we made a copy of libelf.h in tests/ which should be an symlink. * config/.gitignore: Add profile.fish. * tests/.gitignore: Add funcretval_test_struct, libelf.h and system-elf-gelf-test. * tests/Makefile.am (libelf.h): Make symlink instead of copy. Signed-off-by: Mark Wielaard --- config/.gitignore | 1 + tests/.gitignore | 3 +++ tests/Makefile.am | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/config/.gitignore b/config/.gitignore index 8cd8ccdbf3c1..b7897159babf 100644 --- a/config/.gitignore +++ b/config/.gitignore @@ -11,5 +11,6 @@ /missing /profile.csh /profile.sh +/profile.fish /test-driver /ylwrap diff --git a/tests/.gitignore b/tests/.gitignore index 0289959d73d5..772c7881ae3f 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -71,6 +71,7 @@ /find-prologues /funcretval /funcretval_test++11 +/funcretval_test_struct /funcscopes /get-aranges /get-files @@ -81,6 +82,7 @@ /getphdrnum /getsrc_die /hash +/libelf.h /leb128 /line2addr /low_high_pc @@ -104,6 +106,7 @@ /showptable /strptr /system-elf-libelf-test +/system-elf-gelf-test /test-elf_cntl_gelf_getshdr /test-flag-nobits /test-nlist diff --git a/tests/Makefile.am b/tests/Makefile.am index 344d6706e16e..40e0eaa5a368 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -841,7 +841,7 @@ declfiles_LDADD = $(libdw) BUILT_SOURCES = libelf.h CLEANFILES += libelf.h libelf.h: $(top_srcdir)/libelf/libelf.h - cp $< $@ + ln -s $< $@ if !INSTALL_ELFH system_elf_libelf_test_CPPFLAGS = system_elf_gelf_test_CPPFLAGS = -I. -- 2.39.3