aboutsummaryrefslogtreecommitdiff
path: root/deps/lightning/check/check.arm.swf.sh
blob: 378b6d7d9b6311bb3694cccb2da66e741b3fc25b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
test=`basename $0 | sed -e 's|\.arm\.swf$||'`
./lightning -mthumb=0 -mvfp=0 $srcdir/$test.tst | tr -d \\r > $test.out
if test $? != 0; then
  exit $?
fi

cmp -s $srcdir/$test.ok $test.out
result=$?
if test $result != 0; then
    diff $srcdir/$test.ok $test.out
    rm $test.out
    exit 1
fi
rm $test.out