summaryrefslogtreecommitdiff
path: root/tests/projects/rust/console/test.lua
blob: c1bac30ee797ecfac4e56166e1feb15306be494d (plain)
1
2
3
4
5
6
7
8
9
10
-- main entry
function main(t)

    -- build project
    if os.host() == "macosx" then
        t:build()
    else
        return t:skip("wrong host platform")
    end
end