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