sim: mn10300: add a basic testsuite

This commit is contained in:
Mike Frysinger 2015-04-05 03:52:08 -04:00
parent aad84fa6ae
commit 024305f7f2
4 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1,3 @@
2015-04-05 Mike Frysinger <vapier@gentoo.org>
* pass.s, allinsn.exp, testutils.inc: New files.

View 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
}
}

View File

@ -0,0 +1,7 @@
# check that the sim doesn't die immediately.
# mach: mn10300
.include "testutils.inc"
start
pass

View 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