tests: Drop shared libraries from self_test_files_exe.
authorMark Wielaard <mark@klomp.org>
Sat, 2 Jun 2018 12:56:43 +0000 (14:56 +0200)
committerMark Wielaard <mark@klomp.org>
Sat, 2 Jun 2018 13:00:56 +0000 (15:00 +0200)
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 <mark@klomp.org>
tests/ChangeLog
tests/test-subr.sh

index e3599b2..a7b8da7 100644 (file)
@@ -1,3 +1,8 @@
+2018-06-02  Mark Wielaard  <mark@klomp.org>
+
+       * test-subr.sh (self_test_files_exe): Drop shared libraries.
+       Keep addr2line, elfcmp, objdump and readelf.
+
 2018-05-31  Mark Wielaard  <mark@klomp.org>
 
        * run-readelf-types.sh: New test.
index ff60076..09f428d 100644 (file)
@@ -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 \