2004-02-18 16:37:21 +00:00
|
|
|
# Test ASSERT in a linker script.
|
|
|
|
# By Nathan Sidwell, CodeSourcery LLC
|
2009-09-02 07:25:43 +00:00
|
|
|
# Copyright 2004, 2005, 2007
|
2004-02-18 16:37:21 +00:00
|
|
|
# Free Software Foundation, Inc.
|
|
|
|
#
|
2007-07-06 14:09:45 +00:00
|
|
|
# This file is part of the GNU Binutils.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
2004-02-18 16:37:21 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-06 14:09:45 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2004-02-18 16:37:21 +00:00
|
|
|
# (at your option) any later version.
|
2007-07-06 14:09:45 +00:00
|
|
|
#
|
2004-02-18 16:37:21 +00:00
|
|
|
# This program 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.
|
2007-07-06 14:09:45 +00:00
|
|
|
#
|
2004-02-18 16:37:21 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2007-07-06 14:09:45 +00:00
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301, USA.
|
2004-02-18 16:37:21 +00:00
|
|
|
|
|
|
|
set testname "ASSERT"
|
|
|
|
|
|
|
|
if ![ld_assemble $as $srcdir/$subdir/assert.s tmpdir/assert.o] {
|
|
|
|
unresolved $testname
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ![ld_simple_link $ld tmpdir/assert "-T $srcdir/$subdir/assert.t tmpdir/assert.o"] {
|
|
|
|
fail $testname
|
|
|
|
} else {
|
|
|
|
pass $testname
|
|
|
|
}
|
2011-01-10 14:37:40 +00:00
|
|
|
|
|
|
|
run_dump_test "assert2"
|