From 3b0f6ebab2a89f588a03a7f3681c1ab21f2a69c8 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 20 Aug 2023 18:59:11 -0500 Subject: [PATCH] Add fixme note to process spawn test --- tests/process/spawn.luau | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/process/spawn.luau b/tests/process/spawn.luau index c3537df..a6ab966 100644 --- a/tests/process/spawn.luau +++ b/tests/process/spawn.luau @@ -83,6 +83,11 @@ assert(#homeDir1 > 0, "Home dir from echo was empty") assert(#homeDir2 > 0, "Home dir from pwd was empty") assert(homeDir1 == homeDir2, "Home dirs did not match when performing tilde substitution") +-- FIXME: The below tests with sleeping do not work properly and block +-- indefinitely, causing cargo test to timeout, for now we error prematurely + +error("FIXME") + --[[ Spawning a process should not block any lua thread(s)