summaryrefslogtreecommitdiff
path: root/tests/test_utils/context.lua
blob: 06cd5b6d6edaa1176e8531e5de80ab735019cec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
import("test_build")
import("test_skip")
import("test_assert")

function main(filename)
    local context = { filename = filename }
    table.join2(context, test_build())
    table.join2(context, test_skip())
    table.join2(context, test_assert())
    return context
end