target-xtensa: improve unit tests debugging

- add testcase announcement;
- add global symbols for individual tests;
- add host-debug-* makefile target.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
This commit is contained in:
Max Filippov 2012-03-16 01:24:57 +04:00
parent 16c1deae21
commit 7d6b9f0a38
2 changed files with 20 additions and 0 deletions

View file

@ -29,7 +29,24 @@ main:
exit
.endm
.macro print text
.data
97: .ascii "\text\n"
98:
.align 4
.text
movi a2, 4
movi a3, 2
movi a4, 97b
movi a5, 98b
sub a5, a5, a4
simcall
.endm
.macro test name
//print test_\name
test_\name:
.global test_\name
.endm
.macro test_end