diff options
| author | Mark Wielaard <[email protected]> | 2018-06-02 14:56:43 +0200 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2018-06-02 15:00:56 +0200 |
| commit | 4ebab8e470f38f2203c9adf57000993e318c433f (patch) | |
| tree | bd8be314c2343e4c988e49a77fd8cb36f16df170 /tests | |
| parent | cf65ca1428a5e300e6c6813d5b17e01e16570add (diff) | |
tests: Drop shared libraries from self_test_files_exe.
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 <[email protected]>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ChangeLog | 5 | ||||
| -rw-r--r-- | tests/test-subr.sh | 10 |
2 files changed, 8 insertions, 7 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index e3599b24..a7b8da72 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2018-06-02 Mark Wielaard <[email protected]> + + * test-subr.sh (self_test_files_exe): Drop shared libraries. + Keep addr2line, elfcmp, objdump and readelf. + 2018-05-31 Mark Wielaard <[email protected]> * run-readelf-types.sh: New test. diff --git a/tests/test-subr.sh b/tests/test-subr.sh index ff600760..09f428d1 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 \ |
