summaryrefslogtreecommitdiff
path: root/tests/modules/thread/sleep.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-04-28 21:04:42 +0800
committerruki <[email protected]>2025-08-28 11:35:53 +0800
commitc144ca1a86c559af204f0b51c4cf2b2c5afe0d41 (patch)
tree5ee252819508ce01476fbfc3b50a80c32ef74fd3 /tests/modules/thread/sleep.lua
parent568e22b7879e47616ba96e35a750cf950321742c (diff)
improve sleep tests
Diffstat (limited to 'tests/modules/thread/sleep.lua')
-rw-r--r--tests/modules/thread/sleep.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/modules/thread/sleep.lua b/tests/modules/thread/sleep.lua
index 59c22dc07..294c04fea 100644
--- a/tests/modules/thread/sleep.lua
+++ b/tests/modules/thread/sleep.lua
@@ -1,8 +1,6 @@
import("core.thread.thread")
function callback(id)
- print("import", import)
- --[[
import("core.thread.thread")
print("%s: %d starting ..", thread.running(), id)
local dt = os.mclock()
@@ -12,7 +10,6 @@ function callback(id)
end
dt = os.mclock() - dt
print("%s: %d end, dt: %d ms", thread.running(), id, dt)
- ]]
end
function main()