aboutsummaryrefslogtreecommitdiff
path: root/deps/lightning/check/check.swf.sh
blob: 9494eef78ba861725aaca321779a352fca077b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
test=`basename $0 | sed -e 's|\.swf$||'`
./lightning -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