aboutsummaryrefslogtreecommitdiff
path: root/tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Progressively applying the coding rulesBenoit Germain2024-04-291-0/+2
|
* some dead code elimination and other triflesBenoit Germain2024-04-163-34/+44
|
* C++ migration: inter-state transfer managed by a new class InterCopyContextBenoit Germain2024-04-151-6/+11
|
* Merge branch 'C-Implementation'Benoit Germain2024-04-151-1/+1
|\
| * fix keeper state stack accumulating garbage in case of transfer errorsBenoit Germain2024-04-151-1/+1
| |
* | C++ migration: keeper_call returns a std::optionalBenoit Germain2024-04-151-15/+59
| |
* | Merge branch 'C-Implementation'Benoit Germain2024-04-111-3/+12
|\| | | | | | | Since almost everything in C-implementation comes from manual cherry-picking stuff in master, the merge essentially consist in a pure git tree operation to reconnect stuff properly.
| * Bring all interesting fixes from the C++ implementation back into the C ↵Benoit Germain2024-04-118-194/+332
| | | | | | | | implementation
* | C++ migration: use std::jthread, std::condition_variable, std::chrono.Benoit Germain2024-04-081-15/+5
| | | | | | | | | | | | | | | | win32 pthread support is gone new setting configure.shutdown_mode for cancellation of free-running threads at shutdown. no more hard thread termination! If a thread doesn't cooperate, an error is raised. lane.status "killed" is gone lane:cancel can't force-kill.
* | Tweak some test scriptsBenoit Germain2024-04-083-6/+9
| |
* | Enable manual control of GC inside keeper statesBenoit Germain2024-04-052-48/+31
| |
* | tweak cancel.lua to enable individual tests. fix "hook" test for LuaJIT ↵Benoit Germain2024-04-041-10/+24
| | | | | | | | (need "line" hook instead of "count" to work as expected)
* | tweaks to basic.lua and linda_perf.luaBenoit Germain2024-04-042-40/+77
| |
* | tweak cancel.lua test file to be able to cherry-pick tests with command line ↵Benoit Germain2024-03-281-88/+103
| | | | | | | | arguments
* | C++ migration: less kludgy Linda name management with a std::variantBenoit Germain2024-03-282-1/+10
| |
* | updated perftest.luaBenoit Germain2024-03-271-32/+42
| |
* | C++ migration: templated lua_touserdataBenoit Germain2024-03-261-4/+35
| |
* | C++ migration: refactor AllocatorDefinition and ProtectedAllocator into classesBenoit Germain2024-03-261-0/+2
| |
* | C++ migration: revamped stack checking macrosBenoit Germain2024-03-251-0/+7
| |
* | C++ migration: STACK_GROW is no longer a macro, sanitized and fixed warnings ↵Benoit Germain2024-03-221-6/+29
|/ | | | in keeper.cpp
* Minor tweaksv3.16.1Benoit Germain2023-08-162-3/+1
|
* Update deadlock.luaBenoit Germain2022-02-071-0/+2
|
* fix require() wrapper to return all values returned by original require()Benoit Germain2021-09-221-2/+6
|
* fixed some testsBenoit Germain2021-06-283-4/+6
|
* changed lanes.threads() output so that several lanes with the same name ↵Benoit Germain2021-06-161-0/+72
| | | | | | don't clobber each other in the result table In the original implementations, the debug name was used as key, which meant that several lanes using the same name would cause only the oldest non-collected one to be listed in the results. Now the result is an array of tuples.
* Create manual_register.luaBenoit Germain2019-12-131-0/+35
| | | | New test sample to demonstrate on_state_create and manual function registration.
* Lane cancellation reworkBenoit Germain2019-04-264-67/+139
| | | | | opt.cancelstep is gone, hook is installed by lane:cancel() if requested lane:cancel() rework (see doc)
* lane:cancel internal code refactorizationBenoit Germain2019-04-191-56/+56
|
* don't test __lanesignore for POD types (-> slightly faster when trasnfering ↵Benoit Germain2018-11-301-2/+1
| | | | | | lots of data) + more code refactoring
* Lua 5.4 supportBenoit Germain2018-11-271-1/+1
|
* test script tweaksBenoit Germain2018-11-232-7/+18
|
* Raise an error instead of crashing when attempting to transfer a non-deep ↵Benoit Germain2018-11-231-3/+6
| | | | full userdata
* Create lanes_as_upvalue.luaBenoit Germain2018-11-211-0/+8
|
* Internal code tweaksBenoit Germain2018-11-191-0/+6
| | | | | | * Registry access code utility macros * CONFIG_REGKEY and LOOKUP_REGKEY are now lightuserdata instead of strings * Stack checking debug macros improvements
* Improved deadlock bug test scriptBenoit Germain2018-11-081-10/+19
|
* Make sure any linda operation that can raise an error won't ever leave a ↵Benoit Germain2018-11-081-0/+28
| | | | mutex unreleased
* New test protect_allocatorBenoit Germain2018-10-311-0/+50
|
* Fix protectproxy.luaBenoit Germain2018-10-301-2/+1
|
* Table transfer improvementsBenoit Germain2017-06-051-6/+7
| | | | | | | | * new API function lanes.register( "name", module) to manually register a module table after it was required * Transfering registered module tables will link the equivalent in the destination state instead of cloning it * bumped version to 3.11
* Add test for table caching in basic.luaBenoit Germain2017-05-161-0/+8
| | | | | When transfering a table through multiple references, the transfer result should preserve reference equality.
* Fix package test for Lua 5.2 and Lua 5.3mpeterv2015-02-251-8/+10
| | | | Starting from Lua 5.2, package.loaders is renamed as package.searchers.
* Multiverse compatibilityBenoit Germain2014-02-262-2/+2
| | | | | | | | | | | | | | | * bumped version to 3.9.2 * Internal rework: the whole Lanes engine now works "per universe" to allow concurrent Lanes execution in more than one embedded master state * this universe is a full userdata created in the master state, selfdestruct_gc is the __gc for this userdata * most of what was initialized only once is now per-universe * Fixed potential crashes at desinit if problems occur during keeper states initialisation * Fixed require() not always serialized properly * Raise an error instead of crashing on deep userdata prelude memory allocation failure * Added forgotten mutex desinitialisation at universe shutdown
* lindas can have a group for keeper state assignation controlBenoit Germain2014-02-171-2/+2
|
* more fixes/tweaks about cancelled lindasBenoit Germain2014-02-132-2/+32
| | | | | | | | | | * bumped version to 3.8.5 * linda:limit() returns lanes.cancel_error on a limited linda * lanes.genlock() and lanes.genatomic() support cancelled lindas by returning lanes.cancel_error whenever appropriate * fixed a possible Lua stack overflow when calling linda:dump() * fixed cases where linda:send() and linda:receive() would not return lanes.cancel_error when they should
* new API linda:cancel("read"|"write"|"both"|"none")Benoit Germain2014-02-101-2/+17
| | | | | | | * bumped version to 3.8.4 * all linda operations return lanes.cancel_error on a cancelled linda * raised an internal string length so that longer linda names are fully output before truncation applies when doing tostring( linda)
* 2 crash fixes and 1 experimentBenoit Germain2014-01-221-0/+1
| | | | | | | | | | * bumped version to 3.8.3 * fixed a possible Lua stack overflow when sending complex function through lindas or as lane body * experimental: lanes.nameof() scans the registry if a regular search didn't yield anything interesting * fixed lanes.nameof() misbehaving when encountering a LUA_TTHREAD object
* new lane launcher option gc_cbBenoit Germain2014-01-221-10/+26
| | | | | | | | * bumped version to 3.8.2 * new lane launcher option gc_cb to set a callback that is invoked when a lane is garbage collected * Fix more invalid memory accesses when fetching the name of a joined lane with lanes:threads() (because its lua_State is closed)
* linda performance improvementBenoit Germain2014-01-201-76/+54
| | | | | slightly improve linda performance when the producer/consumer scenario leaves leave the key empty
* Turn potential malicious-crafted code crashes into normal Lua errorsBenoit Germain2014-01-201-2/+7
| | | | | | | | | | | | | * bump version to 3.8.1 * new function lane:get_debug_threadname() * Fix invalid memory accesses when fetching the name of a joined lane with lanes:threads() (because its lua_State is closed) * use luaL_newmetatable() to create the metatable for lane objects * prevent malicious code from crashing by calling lane methods without passing the lane as first argument (raise an error instead) * set_debug_threadname() is no longer registered in the function lookup databases because it holds a C pointer as upvalue and it might crash if used maliciously
* Cancellation improvements and some fixesBenoit Germain2014-01-163-13/+105
| | | | | | | | | | | | | | | * bumped version to 3.7.8 * lane:cancel() now accepts a boolean second argument when soft cancelling (negative timeout) to wake the thread if necessary * if a blocked linda send() or receive() call is interrupted by a cancellation request, it returns CANCEL_ERROR so that this case can be differentiated from a simple timeout * fixed WIN32 THREAD_CREATE() wrong _beginthreadex() error detection * fatal WIN32 threading errors retrieve and output the error description string with FormatMessage() * fixed missing lanes.set_singlethreaded * fixed perftest.lua * added test/cancel.lua