Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 1 | #! /bin/sh |
Roland McGrath | 4be1524 | 2007-04-25 03:09:33 +0000 | [diff] [blame] | 2 | # Copyright (C) 1999, 2000, 2002, 2003, 2005, 2007 Red Hat, Inc. |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 3 | # This file is part of Red Hat elfutils. |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 4 | # Written by Ulrich Drepper <drepper@redhat.com>, 1999. |
Roland McGrath | 6d0c2e8 | 2006-04-05 00:59:43 +0000 | [diff] [blame] | 5 | # |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 6 | # Red Hat elfutils is free software; you can redistribute it and/or modify |
| 7 | # it under the terms of the GNU General Public License as published by the |
| 8 | # Free Software Foundation; version 2 of the License. |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 9 | # |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 10 | # Red Hat elfutils is distributed in the hope that it will be useful, but |
| 11 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | # General Public License for more details. |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 14 | # |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 15 | # You should have received a copy of the GNU General Public License along |
| 16 | # with Red Hat elfutils; if not, write to the Free Software Foundation, |
Ulrich Drepper | 1e9ef50 | 2006-04-04 22:29:06 +0000 | [diff] [blame] | 17 | # Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA. |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 18 | # |
| 19 | # Red Hat elfutils is an included package of the Open Invention Network. |
| 20 | # An included package of the Open Invention Network is a package for which |
| 21 | # Open Invention Network licensees cross-license their patents. No patent |
| 22 | # license is granted, either expressly or impliedly, by designation as an |
| 23 | # included package. Should you wish to participate in the Open Invention |
| 24 | # Network licensing program, please visit www.openinventionnetwork.com |
| 25 | # <http://www.openinventionnetwork.com>. |
| 26 | |
Roland McGrath | 1b8b446 | 2005-11-16 01:33:38 +0000 | [diff] [blame] | 27 | . $srcdir/test-subr.sh |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 28 | |
| 29 | original=${original:-testfile11} |
| 30 | stripped=${stripped:-testfile7} |
| 31 | debugout=${debugfile:+-f testfile.debug.temp -F $debugfile} |
| 32 | |
Roland McGrath | 1b8b446 | 2005-11-16 01:33:38 +0000 | [diff] [blame] | 33 | testfiles $original $stripped $debugfile |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 34 | |
Roland McGrath | 4be1524 | 2007-04-25 03:09:33 +0000 | [diff] [blame] | 35 | tempfiles testfile.temp testfile.debug.temp testfile.unstrip |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 36 | |
Roland McGrath | 1b8b446 | 2005-11-16 01:33:38 +0000 | [diff] [blame] | 37 | testrun ../src/strip -o testfile.temp $debugout $original |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 38 | |
Roland McGrath | 9aa8ef7 | 2007-05-18 08:59:43 +0000 | [diff] [blame^] | 39 | status=0 |
| 40 | |
| 41 | cmp $stripped testfile.temp || status=$? |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 42 | |
| 43 | # Check elflint and the expected result. |
Roland McGrath | 9aa8ef7 | 2007-05-18 08:59:43 +0000 | [diff] [blame^] | 44 | testrun ../src/elflint -q testfile.temp || status=$? |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 45 | |
| 46 | test -z "$debugfile" || { |
Roland McGrath | 9aa8ef7 | 2007-05-18 08:59:43 +0000 | [diff] [blame^] | 47 | cmp $debugfile testfile.debug.temp || status=$? |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 48 | |
| 49 | # Check elflint and the expected result. |
Roland McGrath | 9aa8ef7 | 2007-05-18 08:59:43 +0000 | [diff] [blame^] | 50 | testrun ../src/elflint -q -d testfile.debug.temp || status=$? |
Roland McGrath | 4be1524 | 2007-04-25 03:09:33 +0000 | [diff] [blame] | 51 | |
| 52 | # Now test unstrip recombining those files. |
| 53 | testrun ../src/unstrip -o testfile.unstrip testfile.temp testfile.debug.temp |
| 54 | |
| 55 | # Check that it came back whole. |
| 56 | testrun ../src/elfcmp --hash-inexact $original testfile.unstrip |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 57 | } |
| 58 | |
Roland McGrath | 9aa8ef7 | 2007-05-18 08:59:43 +0000 | [diff] [blame^] | 59 | exit $status |