diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-06-21 10:46:41 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-06-21 10:46:41 -0300 |
| commit | 05ba2880491fa1ecfe78d8a3542edcd6220e4022 (patch) | |
| tree | 991fb71b6b982e3f696a784ae6a0531aa9f56081 /testes/packtests | |
| parent | 6b9490bd72738c02b0d0962fdce6e1763d53e124 (diff) | |
| download | lua-github-05ba2880491fa1ecfe78d8a3542edcd6220e4022.tar.gz | |
Added script 'packtests' to the project
The script 'packtests' creates the 'tar.gz' to deploy the test suite
for Lua.
Diffstat (limited to 'testes/packtests')
| -rwxr-xr-x | testes/packtests | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/testes/packtests b/testes/packtests new file mode 100755 index 00000000..f7bca93d --- /dev/null +++ b/testes/packtests @@ -0,0 +1,52 @@ +NAME="lua-5.4.0-alpha-tests" + +ln -s . $NAME +ln -s .. ltests + +tar --create --gzip --no-recursion --file=$NAME.tar.gz \ +$NAME/all.lua \ +$NAME/api.lua \ +$NAME/attrib.lua \ +$NAME/big.lua \ +$NAME/bitwise.lua \ +$NAME/bwcoercion.lua \ +$NAME/calls.lua \ +$NAME/closure.lua \ +$NAME/code.lua \ +$NAME/constructs.lua \ +$NAME/coroutine.lua \ +$NAME/cstack.lua \ +$NAME/db.lua \ +$NAME/errors.lua \ +$NAME/events.lua \ +$NAME/files.lua \ +$NAME/gc.lua \ +$NAME/gengc.lua \ +$NAME/goto.lua \ +$NAME/heavy.lua \ +$NAME/literals.lua \ +$NAME/locals.lua \ +$NAME/main.lua \ +$NAME/math.lua \ +$NAME/nextvar.lua \ +$NAME/pm.lua \ +$NAME/sort.lua \ +$NAME/strings.lua \ +$NAME/tpack.lua \ +$NAME/utf8.lua \ +$NAME/vararg.lua \ +$NAME/verybig.lua \ +$NAME/libs/makefile \ +$NAME/libs/P1 \ +$NAME/libs/lib1.c \ +$NAME/libs/lib11.c \ +$NAME/libs/lib2.c \ +$NAME/libs/lib21.c \ +$NAME/libs/lib22.c \ +$NAME/ltests/ltests.h \ +$NAME/ltests/ltests.c + +\rm -I $NAME +\rm -I ltests + + |
