summaryrefslogtreecommitdiff
path: root/tests/plugins/macro/test.lua
blob: 54955a21d03f370ea8afab3b7584fd7162266488 (plain)
1
2
3
4
5
6
7
8
9
10
11
function test_macro(t)
    -- we force to enable ccache to test it on ci
    os.exec("xmake f --mode=debug --policies=build.ccache:y -D -y")
    os.exec("xmake m -b")
    os.exec("xmake -r -a -D")
    os.exec("xmake m -e buildtest")
    os.exec("xmake m -l")
    os.exec("xmake m buildtest")
    os.exec("xmake m -d buildtest")
end