summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/projects/dlang/console/test.lua2
-rw-r--r--tests/projects/dlang/shared_library/test.lua2
-rw-r--r--tests/projects/dlang/static_library/test.lua2
-rw-r--r--tests/projects/go/console/test.lua2
-rw-r--r--tests/projects/go/static_library/test.lua2
-rw-r--r--tests/projects/rust/console/test.lua2
-rw-r--r--tests/projects/rust/static_library/test.lua2
7 files changed, 7 insertions, 7 deletions
diff --git a/tests/projects/dlang/console/test.lua b/tests/projects/dlang/console/test.lua
index c1bac30ee..92168a8c1 100644
--- a/tests/projects/dlang/console/test.lua
+++ b/tests/projects/dlang/console/test.lua
@@ -2,7 +2,7 @@
function main(t)
-- build project
- if os.host() == "macosx" then
+ if is_host("macosx") and os.arch() ~= "arm64" then
t:build()
else
return t:skip("wrong host platform")
diff --git a/tests/projects/dlang/shared_library/test.lua b/tests/projects/dlang/shared_library/test.lua
index c1bac30ee..92168a8c1 100644
--- a/tests/projects/dlang/shared_library/test.lua
+++ b/tests/projects/dlang/shared_library/test.lua
@@ -2,7 +2,7 @@
function main(t)
-- build project
- if os.host() == "macosx" then
+ if is_host("macosx") and os.arch() ~= "arm64" then
t:build()
else
return t:skip("wrong host platform")
diff --git a/tests/projects/dlang/static_library/test.lua b/tests/projects/dlang/static_library/test.lua
index c1bac30ee..92168a8c1 100644
--- a/tests/projects/dlang/static_library/test.lua
+++ b/tests/projects/dlang/static_library/test.lua
@@ -2,7 +2,7 @@
function main(t)
-- build project
- if os.host() == "macosx" then
+ if is_host("macosx") and os.arch() ~= "arm64" then
t:build()
else
return t:skip("wrong host platform")
diff --git a/tests/projects/go/console/test.lua b/tests/projects/go/console/test.lua
index c1bac30ee..92168a8c1 100644
--- a/tests/projects/go/console/test.lua
+++ b/tests/projects/go/console/test.lua
@@ -2,7 +2,7 @@
function main(t)
-- build project
- if os.host() == "macosx" then
+ if is_host("macosx") and os.arch() ~= "arm64" then
t:build()
else
return t:skip("wrong host platform")
diff --git a/tests/projects/go/static_library/test.lua b/tests/projects/go/static_library/test.lua
index c1bac30ee..92168a8c1 100644
--- a/tests/projects/go/static_library/test.lua
+++ b/tests/projects/go/static_library/test.lua
@@ -2,7 +2,7 @@
function main(t)
-- build project
- if os.host() == "macosx" then
+ if is_host("macosx") and os.arch() ~= "arm64" then
t:build()
else
return t:skip("wrong host platform")
diff --git a/tests/projects/rust/console/test.lua b/tests/projects/rust/console/test.lua
index c1bac30ee..92168a8c1 100644
--- a/tests/projects/rust/console/test.lua
+++ b/tests/projects/rust/console/test.lua
@@ -2,7 +2,7 @@
function main(t)
-- build project
- if os.host() == "macosx" then
+ if is_host("macosx") and os.arch() ~= "arm64" then
t:build()
else
return t:skip("wrong host platform")
diff --git a/tests/projects/rust/static_library/test.lua b/tests/projects/rust/static_library/test.lua
index c1bac30ee..92168a8c1 100644
--- a/tests/projects/rust/static_library/test.lua
+++ b/tests/projects/rust/static_library/test.lua
@@ -2,7 +2,7 @@
function main(t)
-- build project
- if os.host() == "macosx" then
+ if is_host("macosx") and os.arch() ~= "arm64" then
t:build()
else
return t:skip("wrong host platform")