2001-02-02 07:12:25 -08:00
|
|
|
/*
|
2004-09-10 10:30:46 -07:00
|
|
|
** $Id: ltests.h,v 2.9 2004/07/16 13:17:00 roberto Exp roberto $
|
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
|
|
|
|
|
|
|
|
|
2001-02-06 08:01:29 -08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2001-02-02 07:12:25 -08:00
|
|
|
|
|
|
|
#define LUA_DEBUG
|
|
|
|
|
|
|
|
#undef NDEBUG
|
|
|
|
#include <assert.h>
|
2004-06-30 05:58:44 -07:00
|
|
|
#undef lua_assert
|
2001-02-02 07:12:25 -08: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-02 13:31:17 -07:00
|
|
|
typedef struct Memcontrol {
|
|
|
|
unsigned long numblocks;
|
|
|
|
unsigned long total;
|
|
|
|
unsigned long maxmem;
|
|
|
|
unsigned long memlimit;
|
|
|
|
} Memcontrol;
|
2001-02-02 07:12:25 -08:00
|
|
|
|
2003-10-02 13:31:17 -07:00
|
|
|
extern Memcontrol memcontrol;
|
2001-02-02 07:12:25 -08:00
|
|
|
|
2004-03-15 13:04:54 -08:00
|
|
|
|
|
|
|
/*
|
|
|
|
** generic variable for debug tricks
|
|
|
|
*/
|
|
|
|
extern int Trick;
|
|
|
|
|
|
|
|
|
2003-10-02 13:31:17 -07:00
|
|
|
void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize);
|
2001-02-06 08:01:29 -08:00
|
|
|
|
2003-10-02 13:31:17 -07:00
|
|
|
#ifdef lua_c
|
|
|
|
#define luaL_newstate() lua_newstate(debug_realloc, &memcontrol)
|
|
|
|
#endif
|
2001-02-06 08:01:29 -08:00
|
|
|
|
|
|
|
|
2004-03-15 13:04:54 -08:00
|
|
|
int lua_checkmemory (lua_State *L);
|
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
|
|
|
#undef lua_userstateopen
|
|
|
|
#undef lua_lock
|
|
|
|
#undef lua_unlock
|
|
|
|
|
2001-02-02 07:12:25 -08:00
|
|
|
extern int islocked;
|
2002-10-25 13:05:28 -07:00
|
|
|
#define LUA_USERSTATE int *
|
2002-11-19 09:42:32 -08:00
|
|
|
#define getlock(l) (*(cast(LUA_USERSTATE *, l) - 1))
|
2004-06-02 12:09:21 -07:00
|
|
|
#define lua_userstateopen(l) getlock(l) = &islocked;
|
2002-10-25 13:05:28 -07:00
|
|
|
#define lua_lock(l) lua_assert((*getlock(l))++ == 0)
|
|
|
|
#define lua_unlock(l) lua_assert(--(*getlock(l)) == 0)
|
2001-02-02 07:12:25 -08:00
|
|
|
|
|
|
|
|
2002-07-17 09:25:13 -07:00
|
|
|
int luaB_opentests (lua_State *L);
|
2001-02-02 07:12:25 -08:00
|
|
|
|
2004-07-09 07:29:29 -07:00
|
|
|
#undef lua_userinit
|
|
|
|
#define lua_userinit(L) { luaopen_stdlibs(L); luaB_opentests(L); }
|
2004-04-30 13:13:38 -07:00
|
|
|
|
2001-02-02 07:12:25 -08:00
|
|
|
|
|
|
|
|
2002-12-04 09:29:05 -08:00
|
|
|
/* real main will be defined at `ltests.c' */
|
|
|
|
int l_main (int argc, char *argv[]);
|
|
|
|
#define main l_main
|
|
|
|
|
|
|
|
|
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
|
2001-10-17 14:06:56 -07:00
|
|
|
#define LUAL_BUFFERSIZE 27
|
2002-03-08 11:17:59 -08:00
|
|
|
#define MINSTRTABSIZE 2
|
2001-10-17 14:06:56 -07:00
|
|
|
|
2001-02-02 07:12:25 -08:00
|
|
|
#endif
|