summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpdagobert <[email protected]>2023-03-27 03:17:08 +0200
committerpdagobert <[email protected]>2023-03-27 03:17:08 +0200
commit17c28518c434db16c563ade79b0ec9fc1976c757 (patch)
tree1c06a3cd0bbec64b6dde141d829fe41f2b310119
parentb61e7996260ccdafe32b292ea6c00bd8412e8951 (diff)
Dub package test platforms should match console test
-rw-r--r--tests/projects/dlang/dub_package/test.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/projects/dlang/dub_package/test.lua b/tests/projects/dlang/dub_package/test.lua
index b76241be2..92168a8c1 100644
--- a/tests/projects/dlang/dub_package/test.lua
+++ b/tests/projects/dlang/dub_package/test.lua
@@ -2,5 +2,9 @@
function main(t)
-- build project
- t:build()
+ if is_host("macosx") and os.arch() ~= "arm64" then
+ t:build()
+ else
+ return t:skip("wrong host platform")
+ end
end