]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Test case for handling archives with 64-bit symbol table
authorPetr Machata <pmachata@redhat.com>
Wed, 1 Aug 2012 19:41:36 +0000 (21:41 +0200)
committerPetr Machata <pmachata@redhat.com>
Tue, 7 Aug 2012 12:28:58 +0000 (14:28 +0200)
Signed-off-by: Petr Machata <pmachata@redhat.com>
tests/ChangeLog
tests/Makefile.am
tests/run-test-archive64.sh [new file with mode: 0755]
tests/testarchive64.a.bz2 [new file with mode: 0644]

index 8c2547c3cd6f61e84338db7c1838253e5df0bc59..2291b62b8893dff175f26753a23f5dbf71041c6f 100644 (file)
@@ -1,3 +1,10 @@
+2012-08-01  Petr Machata  <pmachata@redhat.com>
+
+       * run-test-archive64.sh: New test.
+       * testarchive64.a.bz2: New testfile.
+       * Makefile.am (TESTS): Add run-test-archive64.sh.
+       (EXTRA_DIST): Likewise.
+
 2012-08-01  Mark Wielaard  <mjw@redhat.com>
 
        * run-nm-self.sh: New test.
index 06158692300a14981dcbdba2ae3cc86226052631..d0f4e80a07d3c89339e8eac2866645cb2ca7c127 100644 (file)
@@ -83,7 +83,8 @@ TESTS = run-arextract.sh run-arsymtest.sh newfile test-nlist \
        run-test-flag-nobits.sh run-prelink-addr-test.sh \
        run-dwarf-getstring.sh run-rerequest_tag.sh run-typeiter.sh \
        run-readelf-d.sh run-readelf-gdb_index.sh run-unstrip-n.sh \
-       run-low_high_pc.sh run-macro-test.sh run-elf_cntl_gelf_getshdr.sh
+       run-low_high_pc.sh run-macro-test.sh run-elf_cntl_gelf_getshdr.sh \
+       run-test-archive64.sh
 
 if !STANDALONE
 check_PROGRAMS += msg_tst md5-sha1-test
@@ -167,7 +168,8 @@ EXTRA_DIST = run-arextract.sh run-arsymtest.sh \
             run-unstrip-n.sh testcore-rtlib.bz2 testcore-rtlib-ppc.bz2 \
             run-low_high_pc.sh testfile_low_high_pc.bz2 \
             run-macro-test.sh testfile-macinfo.bz2 testfile-macros.bz2 \
-            run-elf_cntl_gelf_getshdr.sh
+            run-elf_cntl_gelf_getshdr.sh \
+            run-test-archive64.sh testarchive64.a.bz2
 
 installed_TESTS_ENVIRONMENT = libdir=$(DESTDIR)$(libdir) \
                              bindir=$(DESTDIR)$(bindir) \
diff --git a/tests/run-test-archive64.sh b/tests/run-test-archive64.sh
new file mode 100755 (executable)
index 0000000..26552ac
--- /dev/null
@@ -0,0 +1,43 @@
+#! /bin/sh
+# Copyright (C) 2012 Red Hat, Inc.
+# This file is part of elfutils.
+#
+# This file is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# elfutils is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+. $srcdir/test-subr.sh
+
+# The test archive was produced on an s390x machine using the
+# following command sequence:
+#  echo 'int aaa(void){}' | gcc -x c /dev/stdin -c -o aaa.o
+#  echo 'int bbb(void){} int bbb2(void){}' | gcc -x c /dev/stdin -c -o bbb.o
+#  echo 'int ccc(void){} int ccc2(void){} int ccc3(void){}' \
+#    | gcc -x c /dev/stdin -c -o ccc.o
+#  ar cru testarchive64.a aaa.o bbb.o ccc.o
+testfiles testarchive64.a
+
+testrun_compare ../src/readelf -c testarchive64.a <<\EOF
+
+Index of archive 'testarchive64.a' has 7 entries:
+Archive member 'aaa.o' contains:
+       aaa
+Archive member 'bbb.o' contains:
+       bbb
+       bbb2
+Archive member 'ccc.o' contains:
+       ccc
+       ccc2
+       ccc3
+EOF
+
+exit 0
diff --git a/tests/testarchive64.a.bz2 b/tests/testarchive64.a.bz2
new file mode 100644 (file)
index 0000000..4b54603
Binary files /dev/null and b/tests/testarchive64.a.bz2 differ