We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f6620 commit c393c69Copy full SHA for c393c69
lispkit-compiler.lks renamed to compiler.lisp
lispkit-compiler.bin renamed to compiler.secd
test.sh
@@ -1,6 +1,8 @@
1
-#!/bin/bash
+#!/bin/sh
2
3
CMD=./lispkit
4
+COMPILER_SRC=./compiler.lisp
5
+COMPILER_OBJ=./compiler.secd
6
7
for f in `ls tests/execute-??`
8
do
@@ -12,11 +14,11 @@ done
12
14
for f in `ls tests/compile-??`
13
15
16
echo "Running compiler test $f ..."
- if [ ! -f compiler.ascii ]; then echo "no compiler" && exit -1; fi;
- $CMD compiler.ascii $f
17
+ if [ ! -f $COMPILER_OBJ ]; then echo "no compiler" && exit -1; fi;
18
+ $CMD $COMPILER_OBJ $f
19
if [ $? -ne 0 ]; then exit -1; fi;
20
done
21
22
echo "Bootstrapping ..."
-$CMD compiler.ascii compiler.txt.ascii
23
+$CMD $COMPILER_OBJ $COMPILER_SRC
24
0 commit comments