blob: 0a36e62e494f2ef71f7d254f85918c6f93bb07cf (
plain)
1
2
3
4
5
6
7
8
9
|
function main(t)
if not is_host("linux") then
return t:skip("wrong host platform")
end
if not os.getenv("ASCEND_HOME_PATH") then
return t:skip("ASCEND_HOME_PATH not set")
end
t:build()
end
|