mirror of
https://github.com/lua/lua
synced 2024-11-25 22:29:39 +03:00
662506476b
The script 'all', to run all tests, automatically ensures that the Lua interpreter and the test C libraries (in 'testes/libs/') are updated with any changes in 'luaconf.h'.
10 lines
203 B
Plaintext
Executable File
10 lines
203 B
Plaintext
Executable File
make -s -j
|
|
cd testes/libs; make -s
|
|
cd .. # back to directory 'testes'
|
|
ulimit -S -s 2000
|
|
if { ../lua all.lua; } then
|
|
echo -e "\n\n final OK!!!!\n\n"
|
|
else
|
|
echo -e "\n\n >>>> BUG!!!!\n\n"
|
|
fi
|