summaryrefslogtreecommitdiff
path: root/tests/tolua
AgeCommit message (Collapse)Author
2014-10-14fixed Unix tolua test (use exec_testAndreas Baumann
2014-10-14..Andreas Baumann
2014-10-14tolua test runs on WindowsAndreas Baumann
2014-10-14fixed tolua test (linking to -lutil)Andreas Baumann
2014-10-09backported C++ string handling from tolua++ to toluaAndreas Baumann
added test for string parameter in tolua test adapted google normalizer example in crawl.conf
2014-10-09adaptiosn to use local toluaAndreas Baumann
2014-10-08some fixes on WindowsAndreas Baumann
2014-10-08fixed memory leaks in module loader and tolua testAndreas Baumann
2014-10-08added flags to module loader, CLOSE_DEFERRED is deferring dlclose with a atexitAndreas Baumann
function, so that the tolua test runs now
2014-10-05added userdata to destroy function, remembering userdata on moduleAndreas Baumann
initialization and passing it to destroy function in principle the system works, a dlopen of the lua module removes necessary functions needed during lua VM shutdown, this is due to stack unwinding and the order objects are destroyed (should be fixable)
2014-10-05must load all symbols of a C++/Lua module, otherwise the lua_open functionAndreas Baumann
can't be called from the Lua VM during module initialization
2014-10-05..Andreas Baumann
2014-10-05trying to initialize tolua glue code in test module, segfaulting stillAndreas Baumann
2014-10-04first experiments with tolua and Lua glue code in a module and how toAndreas Baumann
make it usable in a Lua script