2001-02-02 13:12:25 -02:00
|
|
|
/*
|
2018-08-23 14:26:12 -03:00
|
|
|
** $Id: ltests.h $
|
2001-02-02 13:12:25 -02:00
|
|
|
** Internal Header for Debugging of the Lua Implementation
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltests_h
|
|
|
|
#define ltests_h
|
|
|
|
|
|
|
|
|
2017-11-13 10:19:35 -02:00
|
|
|
#include <stdio.h>
|
2001-02-06 14:01:29 -02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2017-12-18 11:01:49 -02:00
|
|
|
/* test Lua with compatibility code */
|
|
|
|
#define LUA_COMPAT_MATHLIB
|
2018-08-24 10:17:54 -03:00
|
|
|
#define LUA_COMPAT_LT_LE
|
2014-07-23 13:47:47 -03:00
|
|
|
|
2001-02-02 13:12:25 -02:00
|
|
|
|
|
|
|
#define LUA_DEBUG
|
|
|
|
|
2014-07-23 13:47:47 -03:00
|
|
|
|
|
|
|
/* turn on assertions */
|
2020-07-08 15:51:55 -03:00
|
|
|
#define LUAI_ASSERT
|
2001-02-02 13:12:25 -02:00
|
|
|
|
|
|
|
|
|
|
|
/* to avoid warnings, and to make sure value is really unused */
|
|
|
|
#define UNUSED(x) (x=0, (void)(x))
|
|
|
|
|
|
|
|
|
2015-06-18 11:27:44 -03:00
|
|
|
/* 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
|
|
|
|
|
|
|
|
|
2018-04-11 13:49:36 -03:00
|
|
|
/* get a chance to test code without jump tables */
|
|
|
|
#define LUA_USE_JUMPTABLE 0
|
|
|
|
|
|
|
|
|
2018-05-04 17:01:45 -03:00
|
|
|
/* use 32-bit integers in random generator */
|
|
|
|
#define LUA_RAND32
|
|
|
|
|
|
|
|
|
2014-07-23 13:47:47 -03:00
|
|
|
/* memory-allocator control variables */
|
2003-10-02 17:31:17 -03:00
|
|
|
typedef struct Memcontrol {
|
2020-08-03 13:22:57 -03:00
|
|
|
int failnext;
|
2003-10-02 17:31:17 -03:00
|
|
|
unsigned long numblocks;
|
|
|
|
unsigned long total;
|
|
|
|
unsigned long maxmem;
|
|
|
|
unsigned long memlimit;
|
2017-12-07 16:51:39 -02:00
|
|
|
unsigned long countlimit;
|
2020-01-31 11:09:53 -03:00
|
|
|
unsigned long objcount[LUA_NUMTYPES];
|
2003-10-02 17:31:17 -03:00
|
|
|
} Memcontrol;
|
2001-02-02 13:12:25 -02:00
|
|
|
|
2014-11-29 17:45:37 -02:00
|
|
|
LUA_API Memcontrol l_memcontrol;
|
2001-02-02 13:12:25 -02:00
|
|
|
|
2004-03-15 18:04:54 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** generic variable for debug tricks
|
|
|
|
*/
|
2010-01-11 15:33:09 -02:00
|
|
|
extern void *l_Trick;
|
2004-03-15 18:04:54 -03:00
|
|
|
|
|
|
|
|
2005-05-03 16:01:17 -03:00
|
|
|
|
2014-07-23 13:47:47 -03:00
|
|
|
/*
|
|
|
|
** Function to traverse and check all memory used by Lua
|
|
|
|
*/
|
2020-07-27 11:24:03 -03:00
|
|
|
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);
|
2004-02-16 16:09:52 -03:00
|
|
|
|
2001-02-06 14:01:29 -02:00
|
|
|
|
2001-02-02 13:12:25 -02:00
|
|
|
/* test for lock/unlock */
|
2004-06-02 16:09:21 -03:00
|
|
|
|
2005-09-14 14:48:57 -03:00
|
|
|
struct L_EXTRA { int lock; int *plock; };
|
2014-07-24 11:00:16 -03:00
|
|
|
#undef LUA_EXTRASPACE
|
|
|
|
#define LUA_EXTRASPACE sizeof(struct L_EXTRA)
|
|
|
|
#define getlock(l) cast(struct L_EXTRA*, lua_getextraspace(l))
|
2005-09-14 14:48:57 -03:00
|
|
|
#define luai_userstateopen(l) \
|
|
|
|
(getlock(l)->lock = 0, getlock(l)->plock = &(getlock(l)->lock))
|
2013-11-08 15:36:05 -02:00
|
|
|
#define luai_userstateclose(l) \
|
|
|
|
lua_assert(getlock(l)->lock == 1 && getlock(l)->plock == &(getlock(l)->lock))
|
2014-07-24 11:00:16 -03:00
|
|
|
#define luai_userstatethread(l,l1) \
|
|
|
|
lua_assert(getlock(l1)->plock == getlock(l)->plock)
|
2010-04-19 14:40:13 -03:00
|
|
|
#define luai_userstatefree(l,l1) \
|
|
|
|
lua_assert(getlock(l)->plock == getlock(l1)->plock)
|
2005-09-14 14:48:57 -03:00
|
|
|
#define lua_lock(l) lua_assert((*getlock(l)->plock)++ == 0)
|
|
|
|
#define lua_unlock(l) lua_assert(--(*getlock(l)->plock) == 0)
|
2001-02-02 13:12:25 -02:00
|
|
|
|
|
|
|
|
2014-07-23 13:47:47 -03:00
|
|
|
|
2014-11-29 17:45:37 -02:00
|
|
|
LUA_API int luaB_opentests (lua_State *L);
|
2001-02-02 13:12:25 -02:00
|
|
|
|
2014-11-29 17:45:37 -02:00
|
|
|
LUA_API void *debug_realloc (void *ud, void *block,
|
|
|
|
size_t osize, size_t nsize);
|
2009-12-17 10:26:09 -02:00
|
|
|
|
|
|
|
#if defined(lua_c)
|
|
|
|
#define luaL_newstate() lua_newstate(debug_realloc, &l_memcontrol)
|
2022-12-07 15:12:52 -03:00
|
|
|
#define luai_openlibs(L) \
|
|
|
|
{ luaL_openlibs(L); \
|
2016-07-19 14:13:00 -03:00
|
|
|
luaL_requiref(L, "T", luaB_opentests, 1); \
|
|
|
|
lua_pop(L, 1); }
|
2005-01-10 14:31:30 -02:00
|
|
|
#endif
|
2004-04-30 17:13:38 -03:00
|
|
|
|
2001-02-02 13:12:25 -02:00
|
|
|
|
|
|
|
|
2001-10-17 19:06:56 -02:00
|
|
|
/* change some sizes to give some bugs a chance */
|
|
|
|
|
2004-05-03 09:28:43 -03:00
|
|
|
#undef LUAL_BUFFERSIZE
|
2007-09-30 10:09:43 -03:00
|
|
|
#define LUAL_BUFFERSIZE 23
|
2002-03-08 16:17:59 -03:00
|
|
|
#define MINSTRTABSIZE 2
|
2017-06-27 08:35:31 -03:00
|
|
|
#define MAXIWTHABS 3
|
2001-10-17 19:06:56 -02:00
|
|
|
|
2020-04-30 17:29:27 -03:00
|
|
|
#define STRCACHE_N 23
|
|
|
|
#define STRCACHE_M 5
|
|
|
|
|
|
|
|
#undef LUAI_USER_ALIGNMENT_T
|
|
|
|
#define LUAI_USER_ALIGNMENT_T union { char b[sizeof(void*) * 8]; }
|
|
|
|
|
2008-08-05 16:24:46 -03:00
|
|
|
|
2022-04-25 14:42:51 -03:00
|
|
|
/*
|
|
|
|
** This one is not compatible with tests for opcode optimizations,
|
|
|
|
** as it blocks some optimizations
|
|
|
|
#define MAXINDEXRK 0
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-12-09 15:17:40 -02:00
|
|
|
/* make stack-overflow tests run faster */
|
|
|
|
#undef LUAI_MAXSTACK
|
|
|
|
#define LUAI_MAXSTACK 50000
|
|
|
|
|
|
|
|
|
2020-12-07 11:17:30 -03:00
|
|
|
/* test mode uses more stack space */
|
|
|
|
#undef LUAI_MAXCCALLS
|
|
|
|
#define LUAI_MAXCCALLS 180
|
|
|
|
|
|
|
|
|
2020-04-30 17:29:27 -03:00
|
|
|
/* force Lua to use its own implementations */
|
|
|
|
#undef lua_strx2number
|
|
|
|
#undef lua_number2strx
|
2015-09-22 11:18:24 -03:00
|
|
|
|
|
|
|
|
2001-02-02 13:12:25 -02:00
|
|
|
#endif
|
2014-07-23 13:47:47 -03:00
|
|
|
|