summaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/ltests.c b/ltests.c
index 6dbc2bb1..72487ad8 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.111 2002/03/04 21:29:41 roberto Exp roberto $ 2** $Id: ltests.c,v 1.112 2002/03/14 18:01:52 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -666,7 +666,8 @@ static const struct luaL_reg tests_funcs[] = {
666 {"closestate", closestate}, 666 {"closestate", closestate},
667 {"doremote", doremote}, 667 {"doremote", doremote},
668 {"log2", log2_aux}, 668 {"log2", log2_aux},
669 {"totalmem", mem_query} 669 {"totalmem", mem_query},
670 {NULL, NULL}
670}; 671};
671 672
672 673
@@ -681,14 +682,7 @@ static void fim (void) {
681void luaB_opentests (lua_State *L) { 682void luaB_opentests (lua_State *L) {
682 *cast(int **, L) = &islocked; /* init lock */ 683 *cast(int **, L) = &islocked; /* init lock */
683 lua_state = L; /* keep first state to be opened */ 684 lua_state = L; /* keep first state to be opened */
684 /* open lib in a new table */ 685 luaL_opennamedlib(L, "T", tests_funcs);
685 lua_newtable(L);
686 lua_getglobals(L);
687 lua_pushvalue(L, -2);
688 lua_setglobals(L);
689 luaL_openl(L, tests_funcs); /* open functions inside new table */
690 lua_setglobals(L); /* restore old table of globals */
691 lua_setglobal(L, "T"); /* set new table as global T */
692 atexit(fim); 686 atexit(fim);
693} 687}
694 688