* ld-arm/arm-elf.exp: Add arm-static-app test.
* ld-arm/arm-static-app.s, ld-arm/arm-static-app.d, ld-arm/arm-static-app.r: New files.
This commit is contained in:
parent
f532f3fa70
commit
0885b73e8a
@ -1,3 +1,9 @@
|
||||
2004-01-13 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* ld-arm/arm-elf.exp: Add arm-static-app test.
|
||||
* ld-arm/arm-static-app.s, ld-arm/arm-static-app.d,
|
||||
ld-arm/arm-static-app.r: New files.
|
||||
|
||||
2004-01-12 Anil Paranjpe <anilp1@KPITCummins.com>
|
||||
|
||||
* ld-h8300/h8300-exp: Run the relax-4 test.
|
||||
|
@ -41,6 +41,9 @@ set armelftests {
|
||||
{"Simple dynamic application" "tmpdir/arm-lib.so" "" {arm-app.s}
|
||||
{{objdump -fdw arm-app.d} {objdump -Rw arm-app.r}}
|
||||
"arm-app"}
|
||||
{"Simple static application" "" "" {arm-static-app.s}
|
||||
{{objdump -fdw arm-static-app.d} {objdump -rw arm-static-app.r}}
|
||||
"arm-static-app"}
|
||||
}
|
||||
|
||||
run_ld_link_tests $armelftests
|
||||
|
24
ld/testsuite/ld-arm/arm-static-app.d
Normal file
24
ld/testsuite/ld-arm/arm-static-app.d
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
tmpdir/arm-static-app: file format elf32-littlearm
|
||||
architecture: arm, flags 0x00000112:
|
||||
EXEC_P, HAS_SYMS, D_PAGED
|
||||
start address 0x.*
|
||||
|
||||
Disassembly of section .text:
|
||||
|
||||
.* <_start>:
|
||||
.*: e1a0c00d mov ip, sp
|
||||
.*: e92dd800 stmdb sp!, {fp, ip, lr, pc}
|
||||
.*: eb000001 bl .* <app_func>
|
||||
.*: e89d6800 ldmia sp, {fp, sp, lr}
|
||||
.*: e12fff1e bx lr
|
||||
|
||||
.* <app_func>:
|
||||
.*: e1a0c00d mov ip, sp
|
||||
.*: e92dd800 stmdb sp!, {fp, ip, lr, pc}
|
||||
.*: eb000001 bl .* <app_func2>
|
||||
.*: e89d6800 ldmia sp, {fp, sp, lr}
|
||||
.*: e12fff1e bx lr
|
||||
|
||||
.* <app_func2>:
|
||||
.*: e12fff1e bx lr
|
3
ld/testsuite/ld-arm/arm-static-app.r
Normal file
3
ld/testsuite/ld-arm/arm-static-app.r
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
tmpdir/arm-static-app: file format elf32-littlearm
|
||||
|
20
ld/testsuite/ld-arm/arm-static-app.s
Normal file
20
ld/testsuite/ld-arm/arm-static-app.s
Normal file
@ -0,0 +1,20 @@
|
||||
.text
|
||||
.globl _start
|
||||
_start:
|
||||
mov ip, sp
|
||||
stmdb sp!, {r11, ip, lr, pc}
|
||||
bl app_func
|
||||
ldmia sp, {r11, sp, lr}
|
||||
bx lr
|
||||
|
||||
.globl app_func
|
||||
app_func:
|
||||
mov ip, sp
|
||||
stmdb sp!, {r11, ip, lr, pc}
|
||||
bl app_func2
|
||||
ldmia sp, {r11, sp, lr}
|
||||
bx lr
|
||||
|
||||
.globl app_func2
|
||||
app_func2:
|
||||
bx lr
|
Loading…
Reference in New Issue
Block a user