summaryrefslogtreecommitdiff
path: root/tests/test_utils/test_build.lua
blob: 002c46e1abfbf3dc3c471431b3c5e960bd754d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local test_build = {}

function test_build:build(argv)
    os.exec("xmake f -c -D -y")
    os.exec("xmake")
    os.rm("build")
    os.exec("xmake f -c -D -y --policies=compatibility.version=3.0")
    os.exec("xmake -r")
end

function main()
    return test_build
end