aboutsummaryrefslogtreecommitdiff
path: root/run.sh
blob: a3f67c35aea431fbe09f5fc8ee81755409074535 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/bash
cp cibic testbed/
cp lib.s testbed/
cd testbed/
for f in *.c
do
    echo $f
    ./cibic $f > mips.s 2> /dev/null
    gcc $f -m32 -std=c99 2> /dev/null
    ./spim -stat -file mips.s > out
    ./a.out > std
    diff std out
    if [[ "$?" != 0 ]]; then
        echo "Wrong Answer!"
        break;
    fi
done
echo "OK."