new test for macro 'luai_numinvalidop'

This commit is contained in:
Roberto Ierusalimschy 2014-11-24 12:56:56 -02:00
parent db5ac2fa0d
commit 075661ffde

View File

@ -1,5 +1,5 @@
/*
** $Id: ltests.h,v 2.39 2014/07/24 19:33:29 roberto Exp roberto $
** $Id: ltests.h,v 2.40 2014/10/01 11:54:56 roberto Exp roberto $
** Internal Header for Debugging of the Lua Implementation
** See Copyright Notice in lua.h
*/
@ -104,5 +104,9 @@ void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize);
#define LUAI_USER_ALIGNMENT_T union { char b[sizeof(void*) * 8]; }
/* check macro 'luai_numinvalidop' */
#undef luai_numinvalidop
#define luai_numinvalidop(op,a,b) (op == LUA_OPADD && a == 1.1 && b == 1)
#endif