summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2019-08-29 16:21:35 +0200
committerMark Wielaard <mark@klomp.org>2019-08-29 16:22:19 +0200
commitbb106065dc6962fabf1c163f18c932650dac6580 (patch)
tree533a8c10bf1a3ce2e918a2c2c040ef9aef202930
parent4f937e24dc7ad1820fc7c99a6dd6422657f14666 (diff)
tests: Use smaller self test files.
Don't use the largest executables/libraries to reduce the make check time. Signed-off-by: Mark Wielaard <mark@klomp.org>
-rw-r--r--tests/ChangeLog6
-rw-r--r--tests/test-subr.sh8
2 files changed, 10 insertions, 4 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 657e73b2..69e43ca8 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,9 @@
+2019-08-29 Mark Wielaard <mark@klomp.org>
+
+ * test-subr.sh (self_test_files_exe): replace elfcmp, objdump and
+ readelf with elfclassify, stack and unstrip.
+ (self_test_files_lib): Replace libdw.so with libasm.so.
+
2019-07-05 Omar Sandoval <osandov@fb.com>
* Makefile.am: Remove -ldl.
diff --git a/tests/test-subr.sh b/tests/test-subr.sh
index e23a0176..e768c1e5 100644
--- a/tests/test-subr.sh
+++ b/tests/test-subr.sh
@@ -116,12 +116,12 @@ program_transform()
}
self_test_files_exe=`echo ${abs_top_builddir}/src/addr2line \
-${abs_top_builddir}/src/elfcmp \
-${abs_top_builddir}/src/objdump \
-${abs_top_builddir}/src/readelf`
+${abs_top_builddir}/src/elfclassify \
+${abs_top_builddir}/src/stack \
+${abs_top_builddir}/src/unstrip`
self_test_files_lib=`echo ${abs_top_builddir}/libelf/libelf.so \
-${abs_top_builddir}/libdw/libdw.so`
+${abs_top_builddir}/libasm/libasm.so`
self_test_files_obj=`echo ${abs_top_builddir}/src/size.o \
${abs_top_builddir}/src/strip.o`