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