a98fdd9be6
The main motivation is to allow users to configure/extend Lean using .lua files before loading the actual .lean files. Example: ./lean extension1.lua extension2.lua file.lean Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
26 lines
745 B
Bash
Executable file
26 lines
745 B
Bash
Executable file
#!/bin/sh
|
|
# Test is all examples in the .md files are working
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: test.sh [lean-executable-path]"
|
|
exit 1
|
|
fi
|
|
ulimit -s unlimited
|
|
LEAN=$1
|
|
NUM_ERRORS=0
|
|
for f in `ls *.md`; do
|
|
echo "-- testing $f"
|
|
awk 'BEGIN{ in_block = 0 } !/```/{ if (in_block == 1) print $0; else print "" } /```/ && !/```lua/{ in_block = 0; print "" } /```lua/{ in_block = 1; print "" }' $f > $f.lua
|
|
if $LEAN $f.lua > $f.produced.out; then
|
|
echo "-- worked"
|
|
else
|
|
echo "ERROR executing $f.lua, produced output is at $f.produced.out"
|
|
NUM_ERRORS=$(($NUM_ERRORS+1))
|
|
fi
|
|
done
|
|
if [ $NUM_ERRORS -gt 0 ]; then
|
|
echo "-- Number of errors: $NUM_ERRORS"
|
|
exit 1
|
|
else
|
|
echo "-- Passed"
|
|
exit 0
|
|
fi
|