2023-01-22 22:06:35 +00:00
|
|
|
-- Spawning a task should return the thread that can then be cancelled
|
|
|
|
|
|
|
|
local thread = task.spawn(function() end)
|
|
|
|
assert(type(thread) == "thread", "Spawn should return the thread spawned")
|
|
|
|
|
2023-01-21 20:07:18 +00:00
|
|
|
-- Spawned functions should run right away
|
|
|
|
|
|
|
|
local flag: boolean = false
|
|
|
|
task.spawn(function()
|
|
|
|
flag = true
|
|
|
|
end)
|
2023-01-22 01:11:17 +00:00
|
|
|
assert(flag, "Spawn should run instantly")
|
2023-01-21 20:07:18 +00:00
|
|
|
|
|
|
|
-- Spawned functions should work with yielding
|
|
|
|
|
|
|
|
local flag2: boolean = false
|
|
|
|
task.spawn(function()
|
2023-01-22 01:11:17 +00:00
|
|
|
task.wait(0.1)
|
2023-01-21 20:07:18 +00:00
|
|
|
flag2 = true
|
|
|
|
end)
|
2023-01-22 01:11:17 +00:00
|
|
|
assert(not flag2, "Spawn should work with yielding (1)")
|
|
|
|
task.wait(0.2)
|
|
|
|
assert(flag2, "Spawn should work with yielding (2)")
|
2023-01-21 20:07:18 +00:00
|
|
|
|
2023-01-24 00:13:18 +00:00
|
|
|
-- Spawned functions should be able to run threads created with the coroutine global
|
|
|
|
|
|
|
|
local flag3: boolean = false
|
|
|
|
local thread2 = coroutine.create(function()
|
|
|
|
flag3 = true
|
|
|
|
end)
|
|
|
|
task.spawn(thread2)
|
|
|
|
assert(flag3, "Spawn should run threads made from coroutine.create")
|
|
|
|
|
2023-01-21 20:07:18 +00:00
|
|
|
-- Varargs should get passed correctly
|
|
|
|
|
|
|
|
local function f(arg1: string, arg2: number, f2: (...any) -> ...any)
|
|
|
|
assert(type(arg1) == "string", "Invalid arg 1 passed to function")
|
|
|
|
assert(type(arg2) == "number", "Invalid arg 2 passed to function")
|
|
|
|
assert(type(arg3) == "function", "Invalid arg 3 passed to function")
|
|
|
|
end
|
|
|
|
|
|
|
|
task.spawn(f, "", 1, f)
|
|
|
|
task.spawn(f, "inf", math.huge, f)
|
|
|
|
task.spawn(f, "NaN", 0 / 0, f)
|