mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-25 14:10:22 +02:00
* libguile/lightning/: New directory, made by the following commands: git remote add lightning https://git.savannah.gnu.org/git/lightning.git git merge -s ours --no-commit --allow-unrelated-histories lightning/master git read-tree --prefix=libguile/lightning/ -u lightning/master In theory we will be able to update via: git merge -s subtree lightning/master
15 lines
315 B
Bash
Executable file
15 lines
315 B
Bash
Executable file
#!/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
|