Files
luaj/luaj-test/src/test/resources/errors/create_results.sh

12 lines
174 B
Bash
Raw Normal View History

for l in *.lua
do
if [ "$l" != "args.lua" ];
then
echo $l
result=${l/\.lua/\.out}
lua $l > jse/$result
fi
done
grep -rHnae "^\(needcheck\|fail\|badmsg\)" jse/*.out