summaryrefslogtreecommitdiff
path: root/tests/projects/objc/bundle/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/objc/bundle/test.lua')
-rw-r--r--tests/projects/objc/bundle/test.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/objc/bundle/test.lua b/tests/projects/objc/bundle/test.lua
new file mode 100644
index 000000000..60277b691
--- /dev/null
+++ b/tests/projects/objc/bundle/test.lua
@@ -0,0 +1,10 @@
+-- main entry
+function main(t)
+
+ -- build project
+ if os.host() == "macosx" then
+ t:build({iphoneos = true})
+ else
+ return t:skip("wrong host platform")
+ end
+end