summaryrefslogtreecommitdiff
path: root/tests/projects/ascendc/mixed_binary/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/ascendc/mixed_binary/test.lua')
-rw-r--r--tests/projects/ascendc/mixed_binary/test.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/ascendc/mixed_binary/test.lua b/tests/projects/ascendc/mixed_binary/test.lua
new file mode 100644
index 000000000..0a36e62e4
--- /dev/null
+++ b/tests/projects/ascendc/mixed_binary/test.lua
@@ -0,0 +1,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