2021-03-02 13:51:10 +00:00
|
|
|
#ifndef ltests_h
|
|
|
|
#define ltests_h
|
Bring Lua to 5.4.6. (#1214)
This essentially re-does the work of #875 on top of master.
This is what I did to check that Cosmo's Lua extensions still worked:
```
$ build/bootstrap/make MODE=aarch64 o/aarch64/third_party/lua/lua
$ ape o/aarch64/third_party/lua/lua
>: 10
10
>: 010
8
>: 0b10
2
>: string.byte("\e")
27
>: "Hello, %s" % {"world"}
Hello, world
>: "*" * 3
***
```
`luaL_traceback2` was used to show the stack trace with parameter
values; it's used in `LuaCallWithTrace`, which is used in Redbean to run
Lua code. You should be able to see the extended stack trace by running
something like this: `redbean -e "function a(b)c()end a(2)"` (with
"params" indicating the extended stack trace):
```
stack traceback:
[string "function a(b)c()end a(2)"]:1: in function 'a', params: b = 2;
[string "function a(b)c()end a(2)"]:1: in main chunk
```
@pkulchenko confirmed that I get the expected result with the updated
code.
This is what I did to check that Lua itself still worked:
```
$ cd third_party/lua/test/
$ ape ../../../o/aarch64/third_party/lua/lua all.lua
```
There's one test failure, in `files.lua`:
```
***** FILE 'files.lua'*****
testing i/o
../../../o/aarch64/third_party/lua/lua: files.lua:84: assertion failed!
stack traceback:
[C]: in function 'assert'
files.lua:84: in main chunk
(...tail calls...)
all.lua:195: in main chunk
[C]: in ?
.>>> closing state <<<
```
That isn't a result of these changes; the same test is failing in
master.
The failure is here:
```lua
if not _port then -- invalid seek
local status, msg, code = io.stdin:seek("set", 1000)
assert(not status and type(msg) == "string" and type(code) == "number")
end
```
The test expects a seek to offset 1,000 on stdin to fail — but it
doesn't. `status` ends up being the new offset rather than `nil`.
If I comment out that one test, the remaining tests succeed.
2024-06-16 00:13:08 +00:00
|
|
|
|
2021-03-07 21:26:57 +00:00
|
|
|
#include "third_party/lua/lua.h"
|
2021-03-02 13:51:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* test Lua with compatibility code */
|
|
|
|
#define LUA_COMPAT_MATHLIB
|
|
|
|
#define LUA_COMPAT_LT_LE
|
|
|
|
|
|
|
|
|
|
|
|
#define LUA_DEBUG
|
|
|
|
|
|
|
|
|
|
|
|
/* turn on assertions */
|
|
|
|
#define LUAI_ASSERT
|
|
|
|
|
|
|
|
|
|
|
|
/* to avoid warnings, and to make sure value is really unused */
|
|
|
|
#define UNUSED(x) (x=0, (void)(x))
|
|
|
|
|
|
|
|
|
|
|
|
/* test for sizes in 'l_sprintf' (make sure whole buffer is available) */
|
|
|
|
#undef l_sprintf
|
|
|
|
#if !defined(LUA_USE_C89)
|
|
|
|
#define l_sprintf(s,sz,f,i) (memset(s,0xAB,sz), snprintf(s,sz,f,i))
|
|
|
|
#else
|
|
|
|
#define l_sprintf(s,sz,f,i) (memset(s,0xAB,sz), sprintf(s,f,i))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* get a chance to test code without jump tables */
|
|
|
|
#define LUA_USE_JUMPTABLE 0
|
|
|
|
|
|
|
|
|
|
|
|
/* use 32-bit integers in random generator */
|
|
|
|
#define LUA_RAND32
|
|
|
|
|
|
|
|
|
|
|
|
/* memory-allocator control variables */
|
|
|
|
typedef struct Memcontrol {
|
|
|
|
int failnext;
|
|
|
|
unsigned long numblocks;
|
|
|
|
unsigned long total;
|
|
|
|
unsigned long maxmem;
|
|
|
|
unsigned long memlimit;
|
|
|
|
unsigned long countlimit;
|
|
|
|
unsigned long objcount[LUA_NUMTYPES];
|
|
|
|
} Memcontrol;
|
|
|
|
|
|
|
|
LUA_API Memcontrol l_memcontrol;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** generic variable for debug tricks
|
|
|
|
*/
|
|
|
|
extern void *l_Trick;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Function to traverse and check all memory used by Lua
|
|
|
|
*/
|
|
|
|
LUAI_FUNC int lua_checkmemory (lua_State *L);
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Function to print an object GC-friendly
|
|
|
|
*/
|
|
|
|
struct GCObject;
|
|
|
|
LUAI_FUNC void lua_printobj (lua_State *L, struct GCObject *o);
|
|
|
|
|
|
|
|
|
|
|
|
/* test for lock/unlock */
|
|
|
|
|
|
|
|
struct L_EXTRA { int lock; int *plock; };
|
|
|
|
#undef LUA_EXTRASPACE
|
|
|
|
#define LUA_EXTRASPACE sizeof(struct L_EXTRA)
|
|
|
|
#define getlock(l) cast(struct L_EXTRA*, lua_getextraspace(l))
|
|
|
|
#define luai_userstateopen(l) \
|
|
|
|
(getlock(l)->lock = 0, getlock(l)->plock = &(getlock(l)->lock))
|
|
|
|
#define luai_userstateclose(l) \
|
|
|
|
lua_assert(getlock(l)->lock == 1 && getlock(l)->plock == &(getlock(l)->lock))
|
|
|
|
#define luai_userstatethread(l,l1) \
|
|
|
|
lua_assert(getlock(l1)->plock == getlock(l)->plock)
|
|
|
|
#define luai_userstatefree(l,l1) \
|
|
|
|
lua_assert(getlock(l)->plock == getlock(l1)->plock)
|
|
|
|
#define lua_lock(l) lua_assert((*getlock(l)->plock)++ == 0)
|
|
|
|
#define lua_unlock(l) lua_assert(--(*getlock(l)->plock) == 0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int luaB_opentests (lua_State *L);
|
|
|
|
|
|
|
|
LUA_API void *debug_realloc (void *ud, void *block,
|
|
|
|
size_t osize, size_t nsize);
|
|
|
|
|
|
|
|
#if defined(lua_c)
|
|
|
|
#define luaL_newstate() lua_newstate(debug_realloc, &l_memcontrol)
|
|
|
|
#define luaL_openlibs(L) \
|
|
|
|
{ (luaL_openlibs)(L); \
|
|
|
|
luaL_requiref(L, "T", luaB_opentests, 1); \
|
|
|
|
lua_pop(L, 1); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* change some sizes to give some bugs a chance */
|
|
|
|
|
|
|
|
#undef LUAL_BUFFERSIZE
|
|
|
|
#define LUAL_BUFFERSIZE 23
|
|
|
|
#define MINSTRTABSIZE 2
|
|
|
|
#define MAXIWTHABS 3
|
|
|
|
|
|
|
|
#define STRCACHE_N 23
|
|
|
|
#define STRCACHE_M 5
|
|
|
|
|
|
|
|
#undef LUAI_USER_ALIGNMENT_T
|
|
|
|
#define LUAI_USER_ALIGNMENT_T union { char b[sizeof(void*) * 8]; }
|
|
|
|
|
|
|
|
|
Bring Lua to 5.4.6. (#1214)
This essentially re-does the work of #875 on top of master.
This is what I did to check that Cosmo's Lua extensions still worked:
```
$ build/bootstrap/make MODE=aarch64 o/aarch64/third_party/lua/lua
$ ape o/aarch64/third_party/lua/lua
>: 10
10
>: 010
8
>: 0b10
2
>: string.byte("\e")
27
>: "Hello, %s" % {"world"}
Hello, world
>: "*" * 3
***
```
`luaL_traceback2` was used to show the stack trace with parameter
values; it's used in `LuaCallWithTrace`, which is used in Redbean to run
Lua code. You should be able to see the extended stack trace by running
something like this: `redbean -e "function a(b)c()end a(2)"` (with
"params" indicating the extended stack trace):
```
stack traceback:
[string "function a(b)c()end a(2)"]:1: in function 'a', params: b = 2;
[string "function a(b)c()end a(2)"]:1: in main chunk
```
@pkulchenko confirmed that I get the expected result with the updated
code.
This is what I did to check that Lua itself still worked:
```
$ cd third_party/lua/test/
$ ape ../../../o/aarch64/third_party/lua/lua all.lua
```
There's one test failure, in `files.lua`:
```
***** FILE 'files.lua'*****
testing i/o
../../../o/aarch64/third_party/lua/lua: files.lua:84: assertion failed!
stack traceback:
[C]: in function 'assert'
files.lua:84: in main chunk
(...tail calls...)
all.lua:195: in main chunk
[C]: in ?
.>>> closing state <<<
```
That isn't a result of these changes; the same test is failing in
master.
The failure is here:
```lua
if not _port then -- invalid seek
local status, msg, code = io.stdin:seek("set", 1000)
assert(not status and type(msg) == "string" and type(code) == "number")
end
```
The test expects a seek to offset 1,000 on stdin to fail — but it
doesn't. `status` ends up being the new offset rather than `nil`.
If I comment out that one test, the remaining tests succeed.
2024-06-16 00:13:08 +00:00
|
|
|
/*
|
|
|
|
** This one is not compatible with tests for opcode optimizations,
|
|
|
|
** as it blocks some optimizations
|
|
|
|
#define MAXINDEXRK 0
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2021-03-02 13:51:10 +00:00
|
|
|
/* make stack-overflow tests run faster */
|
|
|
|
#undef LUAI_MAXSTACK
|
|
|
|
#define LUAI_MAXSTACK 50000
|
|
|
|
|
|
|
|
|
|
|
|
/* test mode uses more stack space */
|
|
|
|
#undef LUAI_MAXCCALLS
|
|
|
|
#define LUAI_MAXCCALLS 180
|
|
|
|
|
|
|
|
|
|
|
|
/* force Lua to use its own implementations */
|
|
|
|
#undef lua_strx2number
|
|
|
|
#undef lua_number2strx
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|