2001-02-02 18:12:25 +03:00
|
|
|
/*
|
2005-04-13 21:24:20 +04:00
|
|
|
** $Id: ltests.h,v 2.12 2005/03/18 18:55:45 roberto Exp roberto $
|
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
|
|
|
|
|
|
|
|
|
2001-02-06 19:01:29 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2001-02-02 18:12:25 +03:00
|
|
|
|
|
|
|
#define LUA_DEBUG
|
|
|
|
|
|
|
|
#undef NDEBUG
|
|
|
|
#include <assert.h>
|
2004-06-30 16:58:44 +04:00
|
|
|
#undef lua_assert
|
2001-02-02 18:12:25 +03:00
|
|
|
#define lua_assert(c) assert(c)
|
|
|
|
|
|
|
|
|
|
|
|
/* to avoid warnings, and to make sure value is really unused */
|
|
|
|
#define UNUSED(x) (x=0, (void)(x))
|
|
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
} Memcontrol;
|
2001-02-02 18:12:25 +03:00
|
|
|
|
2003-10-03 00:31:17 +04:00
|
|
|
extern Memcontrol memcontrol;
|
2001-02-02 18:12:25 +03:00
|
|
|
|
2004-03-16 00:04:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** generic variable for debug tricks
|
|
|
|
*/
|
|
|
|
extern int Trick;
|
|
|
|
|
|
|
|
|
2003-10-03 00:31:17 +04:00
|
|
|
void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize);
|
2001-02-06 19:01:29 +03:00
|
|
|
|
2003-10-03 00:31:17 +04:00
|
|
|
#ifdef lua_c
|
|
|
|
#define luaL_newstate() lua_newstate(debug_realloc, &memcontrol)
|
|
|
|
#endif
|
2001-02-06 19:01:29 +03:00
|
|
|
|
|
|
|
|
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 */
|
2005-03-18 21:55:45 +03:00
|
|
|
#undef luai_userstateopen
|
2004-06-02 23:09:21 +04:00
|
|
|
#undef lua_lock
|
|
|
|
#undef lua_unlock
|
2005-03-18 21:55:45 +03:00
|
|
|
#undef LUAI_EXTRASPACE
|
2004-06-02 23:09:21 +04:00
|
|
|
|
2001-02-02 18:12:25 +03:00
|
|
|
extern int islocked;
|
2005-03-18 21:55:45 +03:00
|
|
|
#define LUAI_EXTRASPACE sizeof(double)
|
|
|
|
#define getlock(l) (*(cast(int **, l) - 1))
|
|
|
|
#define luai_userstateopen(l) getlock(l) = &islocked;
|
2002-10-26 00:05:28 +04:00
|
|
|
#define lua_lock(l) lua_assert((*getlock(l))++ == 0)
|
|
|
|
#define lua_unlock(l) lua_assert(--(*getlock(l)) == 0)
|
2001-02-02 18:12:25 +03:00
|
|
|
|
|
|
|
|
2002-07-17 20:25:13 +04:00
|
|
|
int luaB_opentests (lua_State *L);
|
2001-02-02 18:12:25 +03:00
|
|
|
|
2005-01-10 19:31:30 +03:00
|
|
|
#ifdef lua_c
|
2005-04-13 21:24:20 +04:00
|
|
|
#define luaL_openlibs(L) { (luaL_openlibs)(L); luaB_opentests(L); }
|
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
|
|
|
|
|
|
|
|
2002-12-04 20:29:05 +03:00
|
|
|
/* real main will be defined at `ltests.c' */
|
|
|
|
int l_main (int argc, char *argv[]);
|
|
|
|
#define main l_main
|
|
|
|
|
|
|
|
|
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
|
2001-10-18 01:06:56 +04:00
|
|
|
#define LUAL_BUFFERSIZE 27
|
2002-03-08 22:17:59 +03:00
|
|
|
#define MINSTRTABSIZE 2
|
2001-10-18 01:06:56 +04:00
|
|
|
|
2001-02-02 18:12:25 +03:00
|
|
|
#endif
|