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

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