summaryrefslogtreecommitdiff
path: root/tests/modules/scheduler/spinner.lua
blob: 8d20bf7b7fcb87aad7b62836df45edf8bf39f5d6 (plain)
1
2
3
4
5
6
7
8
9
10
import("async.runjobs")

function main()
    printf("testing .. ")
    runjobs("test", function ()
        os.sleep(10000)
    end, {progress = true})
    print("ok")
end