summaryrefslogtreecommitdiff
path: root/tolua/src/tests/tvararg.cpp
blob: 9f58fb8af31a684d2d415c43079addf9f270727b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}

#include "tvararg.h"


#include <assert.h>
#include <stdlib.h>

int B::n = 0;

static void check (void)
{
  assert(B::n == 0);
}

int main ()
{
  int  tolua_tvararg_open (lua_State*);

  atexit(check);

  lua_State* L = luaL_newstate();
  luaL_openlibs(L);
  tolua_tvararg_open(L);

  lua_pushstring(L, "tolua_ubox");
  lua_rawget(L, LUA_REGISTRYINDEX);
  lua_setglobal(L, "ubox");

  if (luaL_dofile(L,"tvararg.lua")) {
    printf("Error: %s\n",lua_tostring(L,-1));
  }

  lua_close(L);

  return 0;
}