summaryrefslogtreecommitdiffstats
path: root/compiler
blob: 15f38bcb7d5510539e65650ae684be70c5c6325e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

TESTDIR=${PWD}/test

pushd src >/dev/null
python __init__.py < ${TESTDIR}/$1.t > ${TESTDIR}/$1.S

pushd emu >/dev/null
make
./riscas ${TESTDIR}/$1.S ${TESTDIR}/$1.bin
ret=$?
popd >/dev/null

popd >/dev/null

exit ${ret}