From: Mark Wielaard Date: Sat, 17 Jun 2023 12:56:12 +0000 (+0200) Subject: tests: Really split run-copymany-sections.sh into separate tests X-Git-Tag: elfutils-0.190~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ef4fea4a8c3ae69cb3259f073dfc53d261b263b;p=thirdparty%2Felfutils.git tests: Really split run-copymany-sections.sh into separate tests The previous commit 4fac1627c "tests: Split run-copymany-sections.sh into separate tests" duplicated the tests because they were still also done in the new test-copymany-subr.sh. Remove them really this time. Also don't source test-subr.sh twice, test-copymany-subr.sh already sources it, so the subtests don't have to also do it again. * tests/test-copymany-subr.sh: Remove actual tests. * tests/run-copymany-be32.sh: Remove . $srcdir/test-subr.sh. * tests/run-copymany-be64.sh: Likewise. * tests/run-copymany-le32.sh: Likewise. * tests/run-copymany-le64.sh: Likewise. Signed-off-by: Mark Wielaard --- diff --git a/tests/run-copymany-be32.sh b/tests/run-copymany-be32.sh index 8fdbfbf69..dc32e7a99 100755 --- a/tests/run-copymany-be32.sh +++ b/tests/run-copymany-be32.sh @@ -1,7 +1,6 @@ #! /bin/sh . $srcdir/test-copymany-subr.sh -. $srcdir/test-subr.sh # 32bit, big endian, rel testfiles testfile29 diff --git a/tests/run-copymany-be64.sh b/tests/run-copymany-be64.sh index bd7e50a45..1f06e0777 100755 --- a/tests/run-copymany-be64.sh +++ b/tests/run-copymany-be64.sh @@ -1,7 +1,6 @@ #! /bin/sh . $srcdir/test-copymany-subr.sh -. $srcdir/test-subr.sh # 64bit, big endian, rel testfiles testfile23 diff --git a/tests/run-copymany-le32.sh b/tests/run-copymany-le32.sh index 82957d6c8..d47a90edd 100755 --- a/tests/run-copymany-le32.sh +++ b/tests/run-copymany-le32.sh @@ -1,7 +1,6 @@ #! /bin/sh . $srcdir/test-copymany-subr.sh -. $srcdir/test-subr.sh # 32bit, little endian, rel testfiles testfile9 diff --git a/tests/run-copymany-le64.sh b/tests/run-copymany-le64.sh index a2d7c2ea4..b563d9de4 100755 --- a/tests/run-copymany-le64.sh +++ b/tests/run-copymany-le64.sh @@ -1,7 +1,6 @@ #! /bin/sh . $srcdir/test-copymany-subr.sh -. $srcdir/test-subr.sh # 64bit, little endian, rel testfiles testfile38 diff --git a/tests/test-copymany-subr.sh b/tests/test-copymany-subr.sh index 4b65d80e6..054103b40 100755 --- a/tests/test-copymany-subr.sh +++ b/tests/test-copymany-subr.sh @@ -57,44 +57,6 @@ test_copy_and_add () # and non-ET_REL (with phdrs)/ET_REL (without phdrs). # Try to add 0x0fff sections twice. -# 32bit, big endian, rel -testfiles testfile29 -test_copy_and_add testfile29 -test_copy_and_add testfile29.copy - -# 64bit, big endian, rel -testfiles testfile23 -test_copy_and_add testfile23 -test_copy_and_add testfile23.copy - -# 32bit, little endian, rel -testfiles testfile9 -test_copy_and_add testfile9 -test_copy_and_add testfile9.copy - -# 64bit, little endian, rel -testfiles testfile38 -test_copy_and_add testfile38 -test_copy_and_add testfile38.copy - -# 32bit, big endian, non-rel -testfiles testfile26 -test_copy_and_add testfile26 -test_copy_and_add testfile26.copy - -# 64bit, big endian, non-rel -testfiles testfile27 -test_copy_and_add testfile27 -test_copy_and_add testfile27.copy - -# 32bit, little endian, non-rel -testfiles testfile -test_copy_and_add testfile -test_copy_and_add testfile.copy - -# 64bit, little endian, non-rel -testfiles testfile10 -test_copy_and_add testfile10 -test_copy_and_add testfile10.copy - -exit 0 +# Separated out into subtests +# run-copymany-be32.sh run-copymany-be64.sh +# run-copymany-le32.sh run-copymany-le64.sh