sim: mn10300: add a basic testsuite
This commit is contained in:
parent
aad84fa6ae
commit
024305f7f2
4 changed files with 88 additions and 0 deletions
3
sim/testsuite/sim/mn10300/ChangeLog
Normal file
3
sim/testsuite/sim/mn10300/ChangeLog
Normal file
|
@ -0,0 +1,3 @@
|
|||
2015-04-05 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* pass.s, allinsn.exp, testutils.inc: New files.
|
15
sim/testsuite/sim/mn10300/allinsn.exp
Normal file
15
sim/testsuite/sim/mn10300/allinsn.exp
Normal file
|
@ -0,0 +1,15 @@
|
|||
# mn10300 simulator testsuite
|
||||
|
||||
if [istarget mn10300-*] {
|
||||
# all machines
|
||||
set all_machs "mn10300"
|
||||
|
||||
foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.s]] {
|
||||
# If we're only testing specific files and this isn't one of them,
|
||||
# skip it.
|
||||
if ![runtest_file_p $runtests $src] {
|
||||
continue
|
||||
}
|
||||
run_sim_test $src $all_machs
|
||||
}
|
||||
}
|
7
sim/testsuite/sim/mn10300/pass.s
Normal file
7
sim/testsuite/sim/mn10300/pass.s
Normal file
|
@ -0,0 +1,7 @@
|
|||
# check that the sim doesn't die immediately.
|
||||
# mach: mn10300
|
||||
|
||||
.include "testutils.inc"
|
||||
|
||||
start
|
||||
pass
|
63
sim/testsuite/sim/mn10300/testutils.inc
Normal file
63
sim/testsuite/sim/mn10300/testutils.inc
Normal file
|
@ -0,0 +1,63 @@
|
|||
# MACRO: exit
|
||||
.macro exit nr
|
||||
mov \nr, d1;
|
||||
# Trap function 1: exit().
|
||||
mov 1, d0;
|
||||
syscall;
|
||||
.endm
|
||||
|
||||
# MACRO: pass
|
||||
# Write 'pass' to stdout and quit
|
||||
.macro pass
|
||||
# Trap function 5: write().
|
||||
mov 5, d0;
|
||||
# Use stdout.
|
||||
mov 1, d1;
|
||||
# Point to the string.
|
||||
mov 1f, a0;
|
||||
mov a0, (12, sp);
|
||||
# Number of bytes to write.
|
||||
mov 5, d3;
|
||||
mov d3, (16, sp);
|
||||
# Trigger OS trap.
|
||||
syscall;
|
||||
exit 0
|
||||
.data
|
||||
1: .asciz "pass\n"
|
||||
.endm
|
||||
|
||||
# MACRO: fail
|
||||
# Write 'fail' to stdout and quit
|
||||
.macro fail
|
||||
# Trap function 5: write().
|
||||
mov 5, d0;
|
||||
# Use stdout.
|
||||
mov 1, d1;
|
||||
# Point to the string.
|
||||
mov 1f, a0;
|
||||
mov a0, (12, sp);
|
||||
# Number of bytes to write.
|
||||
mov 5, d3;
|
||||
mov d3, (16, sp);
|
||||
# Trigger OS trap.
|
||||
syscall;
|
||||
exit 0
|
||||
.data
|
||||
1: .asciz "fail\n"
|
||||
.endm
|
||||
|
||||
# MACRO: start
|
||||
# All assembler tests should start with a call to "start"
|
||||
.macro start
|
||||
.data
|
||||
.global _stack
|
||||
_stack:
|
||||
.rept 8
|
||||
.long 0
|
||||
.endr
|
||||
.text
|
||||
.global _start
|
||||
_start:
|
||||
mov _stack, a0;
|
||||
mov a0, sp;
|
||||
.endm
|
Loading…
Reference in a new issue