aboutsummaryrefslogtreecommitdiff
path: root/tests/atexit.lua
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2025-03-14 14:53:09 +0100
committerBenoit Germain <benoit.germain@ubisoft.com>2025-03-14 14:53:09 +0100
commit512f4c0b46ea5cc359e673b7379cd81925863121 (patch)
tree1e72167d8d63f44109719db9643d4c0445b17d57 /tests/atexit.lua
parent0aa030db022c57947afbae3b97038a403973e3cd (diff)
downloadlanes-master.tar.gz
lanes-master.tar.bz2
lanes-master.zip
Give a name to all lanes in the testsHEADmaster
Diffstat (limited to 'tests/atexit.lua')
-rw-r--r--tests/atexit.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/atexit.lua b/tests/atexit.lua
index 9fc3070..ba10d3b 100644
--- a/tests/atexit.lua
+++ b/tests/atexit.lua
@@ -16,8 +16,8 @@ local g = function()
16 print "User cancellation detected!" 16 print "User cancellation detected!"
17end 17end
18 18
19local genF = lanes.gen( "", {globals = {threadName = "mylane"}}, f) 19local genF = lanes.gen( "", {name = 'auto', globals = {threadName = "mylane"}}, f)
20local genG = lanes.gen( "", g) 20local genG = lanes.gen( "", { name = 'auto'}, g)
21 21
22 22
23-- launch a good batch of free running lanes 23-- launch a good batch of free running lanes