summaryrefslogtreecommitdiff
path: root/tests/projects/c++
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/c++')
-rw-r--r--tests/projects/c++/linkorders/test.lua2
-rw-r--r--tests/projects/c++/snippet_runtimes/test.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/c++/linkorders/test.lua b/tests/projects/c++/linkorders/test.lua
index 704959e28..39898ef97 100644
--- a/tests/projects/c++/linkorders/test.lua
+++ b/tests/projects/c++/linkorders/test.lua
@@ -1,7 +1,7 @@
function main(t)
-- freebsd ci is slower
- if is_host("bsd") then
+ if is_host("bsd", "solaris") then
return
end
diff --git a/tests/projects/c++/snippet_runtimes/test.lua b/tests/projects/c++/snippet_runtimes/test.lua
index 9f7e59b3b..e06f405f7 100644
--- a/tests/projects/c++/snippet_runtimes/test.lua
+++ b/tests/projects/c++/snippet_runtimes/test.lua
@@ -12,7 +12,7 @@ end
function main(t)
local clang = find_tool("clang")
- if clang and not is_subhost("windows") and not is_subhost("bsd") then
+ if clang and not is_subhost("windows") and not is_subhost("bsd", "solaris") then
os.exec("xmake f --toolchain=clang --runtimes=c++_shared --yes")
_build()
end