aboutsummaryrefslogtreecommitdiff
path: root/src/unittest/CMakeLists.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Only include keycode unittests in client build (fixes #4559)sfan52016-09-291-1/+4
|
* Add keycode.cpp unittestssfan52016-09-251-0/+1
|
* Add MapSettingsManager and new mapgen setting script API functionskwolekr2016-07-031-0/+1
| | | | | | | | | | | | | | | This commit refactors the majority of the Mapgen settings system. - MapgenParams is now owned by MapSettingsManager, itself a part of ServerMap, instead of the EmergeManager. - New Script API functions added: core.get_mapgen_setting core.get_mapgen_setting_noiseparams, core.set_mapgen_setting, and core.set_mapgen_setting_noiseparams. - minetest.get/set_mapgen_params are deprecated by the above new functions. - It is now possible to view and modify any arbitrary mapgen setting from a mod, rather than the base MapgenParams structure. - MapgenSpecificParams has been removed.
* Clean up threadingShadowNinja2015-08-231-0/+1
| | | | | | | | | | | | | | | | | | | | * Rename everything. * Strip J prefix. * Change UpperCamelCase functions to lowerCamelCase. * Remove global (!) semaphore count mutex on OSX. * Remove semaphore count getter (unused, unsafe, depended on internal API functions on Windows, and used a hack on OSX). * Add `Atomic<type>`. * Make `Thread` handle thread names. * Add support for C++11 multi-threading. * Combine pthread and win32 sources. * Remove `ThreadStarted` (unused, unneeded). * Move some includes from the headers to the sources. * Move all of `Event` into its header (allows inlining with no new includes). * Make `Event` use `Semaphore` (except on Windows). * Move some porting functions into `Thread`. * Integrate logging with `Thread`. * Add threading test.
* Add AreaStore data structureest312015-07-271-0/+1
|
* Tests: Add schematic unittestskwolekr2015-05-081-0/+1
| | | | | Improve schematic file-saving interface Add ability to create temporary test files
* Tests: Add NodeResolver unittestskwolekr2015-05-051-0/+1
| | | | | | Minor misc. NodeResolver cleanups Prefix faux content type constants for testing with t_ to avoid confusion or name collisions
* Tests: Add ObjDef unittestskwolekr2015-05-031-0/+1
|
* Tests: Add random unittestskwolekr2015-04-291-0/+1
|
* Tests: Modularize unit testingkwolekr2015-04-261-0/+18
Split unit tests into separate files under src/unittest/ Give better unittest diagnostics Clean up some code