aboutsummaryrefslogtreecommitdiff
path: root/unit_tests/scripts/lane/cooperative_shutdown.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 /unit_tests/scripts/lane/cooperative_shutdown.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 'unit_tests/scripts/lane/cooperative_shutdown.lua')
-rw-r--r--unit_tests/scripts/lane/cooperative_shutdown.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/unit_tests/scripts/lane/cooperative_shutdown.lua b/unit_tests/scripts/lane/cooperative_shutdown.lua
index 1204e35..756e33c 100644
--- a/unit_tests/scripts/lane/cooperative_shutdown.lua
+++ b/unit_tests/scripts/lane/cooperative_shutdown.lua
@@ -31,9 +31,9 @@ end
31 31
32 32
33-- the generators 33-- the generators
34local g1 = lanes.gen("*", lane1) 34local g1 = lanes.gen("*", { name = 'auto' }, lane1)
35local g2 = lanes.gen("*", lane2) 35local g2 = lanes.gen("*", { name = 'auto' }, lane2)
36local g3 = lanes.gen("*", lane3) 36local g3 = lanes.gen("*", { name = 'auto' }, lane3)
37 37
38-- launch lanes 38-- launch lanes
39local h1 = g1() 39local h1 = g1()