From: Daniel Jacobowitz Date: Tue, 13 Jan 2004 21:09:18 +0000 (+0000) Subject: * ld-arm/arm-elf.exp: Add arm-static-app test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0885b73e8a827df0530bb2cee57affc5ecd9fa1e;p=binutils-gdb.git * 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. --- diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index e031bd61311..581c20eb1ff 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2004-01-13 Daniel Jacobowitz + + * 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 * ld-h8300/h8300-exp: Run the relax-4 test. diff --git a/ld/testsuite/ld-arm/arm-elf.exp b/ld/testsuite/ld-arm/arm-elf.exp index 0f9974196b5..581ebb6292e 100644 --- a/ld/testsuite/ld-arm/arm-elf.exp +++ b/ld/testsuite/ld-arm/arm-elf.exp @@ -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 diff --git a/ld/testsuite/ld-arm/arm-static-app.d b/ld/testsuite/ld-arm/arm-static-app.d new file mode 100644 index 00000000000..2d39b55c2e8 --- /dev/null +++ b/ld/testsuite/ld-arm/arm-static-app.d @@ -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 .* + .*: e89d6800 ldmia sp, {fp, sp, lr} + .*: e12fff1e bx lr + +.* : + .*: e1a0c00d mov ip, sp + .*: e92dd800 stmdb sp!, {fp, ip, lr, pc} + .*: eb000001 bl .* + .*: e89d6800 ldmia sp, {fp, sp, lr} + .*: e12fff1e bx lr + +.* : + .*: e12fff1e bx lr diff --git a/ld/testsuite/ld-arm/arm-static-app.r b/ld/testsuite/ld-arm/arm-static-app.r new file mode 100644 index 00000000000..7c350dcb97e --- /dev/null +++ b/ld/testsuite/ld-arm/arm-static-app.r @@ -0,0 +1,3 @@ + +tmpdir/arm-static-app: file format elf32-littlearm + diff --git a/ld/testsuite/ld-arm/arm-static-app.s b/ld/testsuite/ld-arm/arm-static-app.s new file mode 100644 index 00000000000..99c579f0b40 --- /dev/null +++ b/ld/testsuite/ld-arm/arm-static-app.s @@ -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