summaryrefslogtreecommitdiff
path: root/tests/modules/thread
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modules/thread')
-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()