From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 33819 invoked by alias); 2 Jun 2018 13:01:31 -0000 Mailing-List: contact elfutils-devel-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: elfutils-devel-owner@sourceware.org Received: (qmail 33793 invoked by uid 89); 2 Jun 2018 13:01:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.4 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=backends X-Spam-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: gnu.wildebeest.org Received: from wildebeest.demon.nl (HELO gnu.wildebeest.org) (212.238.236.112) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 02 Jun 2018 13:01:27 +0000 Received: from tarox.wildebeest.org (tarox.wildebeest.org [172.31.17.39]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 892013000B2D; Sat, 2 Jun 2018 15:01:24 +0200 (CEST) Received: by tarox.wildebeest.org (Postfix, from userid 1000) id 400EC401E936; Sat, 2 Jun 2018 15:01:24 +0200 (CEST) From: Mark Wielaard To: elfutils-devel@sourceware.org Cc: Mark Wielaard Subject: [COMMITTED] tests: Drop shared libraries from self_test_files_exe. Date: Sat, 02 Jun 2018 13:01:00 -0000 Message-Id: <1527944481-5148-1-git-send-email-mark@klomp.org> X-Mailer: git-send-email 1.8.3.1 X-Spam-Flag: NO X-IsSubscribed: yes X-SW-Source: 2018-q2/txt/msg00142.txt.bz2 Commit 00d89086 "tests: Split self_test_files into an exe, lib and obj list" accidentially left the shared libraries in the self_test_files_exe. Causing all shared libraries to be tested twice. Drop them and keep just four ET_EXE files: addr2line, elfcmp, objdump and readelf. Signed-off-by: Mark Wielaard --- tests/ChangeLog | 5 +++++ tests/test-subr.sh | 10 +++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/tests/ChangeLog b/tests/ChangeLog index e3599b2..a7b8da7 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2018-06-02 Mark Wielaard + + * test-subr.sh (self_test_files_exe): Drop shared libraries. + Keep addr2line, elfcmp, objdump and readelf. + 2018-05-31 Mark Wielaard * run-readelf-types.sh: New test. diff --git a/tests/test-subr.sh b/tests/test-subr.sh index ff60076..09f428d 100644 --- a/tests/test-subr.sh +++ b/tests/test-subr.sh @@ -116,13 +116,9 @@ program_transform() } self_test_files_exe=`echo ${abs_top_builddir}/src/addr2line \ -${abs_top_builddir}/src/elfcmp ${abs_top_builddir}/src/elflint \ -${abs_top_builddir}/src/nm ${abs_top_builddir}/src/objdump \ -${abs_top_builddir}/src/readelf \ -${abs_top_builddir}/libelf/libelf.so \ -${abs_top_builddir}/libdw/libdw.so \ -${abs_top_builddir}/backends/libebl_i386.so \ -${abs_top_builddir}/backends/libebl_x86_64.so` +${abs_top_builddir}/src/elfcmp \ +${abs_top_builddir}/src/objdump \ +${abs_top_builddir}/src/readelf` self_test_files_lib=`echo ${abs_top_builddir}/libelf/libelf.so \ ${abs_top_builddir}/libdw/libdw.so \ -- 1.8.3.1