summaryrefslogtreecommitdiff
path: root/tests/modules
AgeCommit message (Collapse)Author
2014-10-14fixed module tests on LinuxAndreas Baumann
2014-10-08some fixes on WindowsAndreas 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-05added void * userdata to initModuleAndreas Baumann
2014-10-04fixed code in destructor of BaseModuleLoader, was a little bit weirdAndreas Baumann
2014-10-04added init and destroy functions to modulesAndreas Baumann
2012-09-10fixed logger to liblogger renaming on LinuxAndreas Baumann
2012-09-10libutil move and liblogger rename on WindowsAndreas Baumann
2012-09-07fixed some linker errors on FreeBSD (should also affect Linux, but there ↵Andreas Baumann
everything worked?)
2012-09-07fixed miracle of unresolved instance function in Singleton (weAndreas Baumann
need a "usage" of the template somewhere in the DLL) fixed all module tests on Windows
2012-09-07fixed all tests and rewrote module testAndreas Baumann
2012-09-06first properly working logger on Windows (singleton dll issue)Andreas Baumann
2012-09-05split away util, logger, and moduleAndreas Baumann
made a liblogger adapted all tests
2012-09-02prefer dynamic to static linking (linking a non-PIC .a libraryAndreas Baumann
into a module is illegal, but on Linux!)
2012-08-21added test for module loader in loaded module test (Linux)Andreas Baumann
2012-08-21moved DLL fiddling to Exportable.hppAndreas Baumann
2012-08-21fixed singleton double-instance problem on Windows, not a really nice solutionAndreas Baumann
2012-08-20-Andreas Baumann
2012-08-20added a test showing the singleton module problem on WindowsAndreas Baumann
2012-08-20module test fixesAndreas Baumann
2012-08-20added a module test (Windows)Andreas Baumann