diff options
Diffstat (limited to 'tests/projects/package')
| -rw-r--r-- | tests/projects/package/basic/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/compatibility/deps_with_version/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/compatibility/sync_requires_to_deps/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/components/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/depconfigs/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/inherit_base/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/multiconfig/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/package_rule/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/rootconfigs/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/toolchain_muslcc/test.lua | 2 | ||||
| -rw-r--r-- | tests/projects/package/toolchain_muslcc/xmake.lua | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/tests/projects/package/basic/test.lua b/tests/projects/package/basic/test.lua index 4964fecaa..65d2f2335 100644 --- a/tests/projects/package/basic/test.lua +++ b/tests/projects/package/basic/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/package/compatibility/deps_with_version/test.lua b/tests/projects/package/compatibility/deps_with_version/test.lua index a6690754b..b9f43bad5 100644 --- a/tests/projects/package/compatibility/deps_with_version/test.lua +++ b/tests/projects/package/compatibility/deps_with_version/test.lua @@ -1,6 +1,6 @@ function main(t) -- freebsd ci is slower - if is_host("bsd") then + if is_host("bsd", "solaris") then return end -- only for x86/x64, because it will take too long time on ci with arm/mips diff --git a/tests/projects/package/compatibility/sync_requires_to_deps/test.lua b/tests/projects/package/compatibility/sync_requires_to_deps/test.lua index a6690754b..b9f43bad5 100644 --- a/tests/projects/package/compatibility/sync_requires_to_deps/test.lua +++ b/tests/projects/package/compatibility/sync_requires_to_deps/test.lua @@ -1,6 +1,6 @@ function main(t) -- freebsd ci is slower - if is_host("bsd") then + if is_host("bsd", "solaris") then return end -- only for x86/x64, because it will take too long time on ci with arm/mips diff --git a/tests/projects/package/components/test.lua b/tests/projects/package/components/test.lua index a45153181..fdec596a7 100644 --- a/tests/projects/package/components/test.lua +++ b/tests/projects/package/components/test.lua @@ -1,5 +1,5 @@ function main(t) - if is_host("bsd") or is_subhost("msys") then + if is_host("bsd", "solaris") or is_subhost("msys") then return end diff --git a/tests/projects/package/depconfigs/test.lua b/tests/projects/package/depconfigs/test.lua index a6690754b..b9f43bad5 100644 --- a/tests/projects/package/depconfigs/test.lua +++ b/tests/projects/package/depconfigs/test.lua @@ -1,6 +1,6 @@ function main(t) -- freebsd ci is slower - if is_host("bsd") then + if is_host("bsd", "solaris") then return end -- only for x86/x64, because it will take too long time on ci with arm/mips diff --git a/tests/projects/package/inherit_base/test.lua b/tests/projects/package/inherit_base/test.lua index a6690754b..b9f43bad5 100644 --- a/tests/projects/package/inherit_base/test.lua +++ b/tests/projects/package/inherit_base/test.lua @@ -1,6 +1,6 @@ function main(t) -- freebsd ci is slower - if is_host("bsd") then + if is_host("bsd", "solaris") then return end -- only for x86/x64, because it will take too long time on ci with arm/mips diff --git a/tests/projects/package/multiconfig/test.lua b/tests/projects/package/multiconfig/test.lua index a6690754b..b9f43bad5 100644 --- a/tests/projects/package/multiconfig/test.lua +++ b/tests/projects/package/multiconfig/test.lua @@ -1,6 +1,6 @@ function main(t) -- freebsd ci is slower - if is_host("bsd") then + if is_host("bsd", "solaris") then return end -- only for x86/x64, because it will take too long time on ci with arm/mips diff --git a/tests/projects/package/package_rule/test.lua b/tests/projects/package/package_rule/test.lua index 4964fecaa..65d2f2335 100644 --- a/tests/projects/package/package_rule/test.lua +++ b/tests/projects/package/package_rule/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/package/rootconfigs/test.lua b/tests/projects/package/rootconfigs/test.lua index 7d55eaf4e..d98f3385f 100644 --- a/tests/projects/package/rootconfigs/test.lua +++ b/tests/projects/package/rootconfigs/test.lua @@ -1,6 +1,6 @@ function main(t) -- freebsd ci is slower - if is_host("bsd") then + if is_host("bsd", "solaris") then return end -- only for x86/x64, because it will take too long time on ci with arm/mips diff --git a/tests/projects/package/toolchain_muslcc/test.lua b/tests/projects/package/toolchain_muslcc/test.lua index 4964fecaa..65d2f2335 100644 --- a/tests/projects/package/toolchain_muslcc/test.lua +++ b/tests/projects/package/toolchain_muslcc/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/package/toolchain_muslcc/xmake.lua b/tests/projects/package/toolchain_muslcc/xmake.lua index 8fdd99b9f..6c5e8f8b3 100644 --- a/tests/projects/package/toolchain_muslcc/xmake.lua +++ b/tests/projects/package/toolchain_muslcc/xmake.lua @@ -25,7 +25,7 @@ toolchain_end() -- add library packages -- for testing zlib/xmake, libplist/autoconf, libogg/cmake add_requires("zlib", "libogg", {system = false}) -if is_host("macosx", "linux", "bsd") then +if is_host("macosx", "linux", "bsd", "solaris") then add_requires("libplist", {system = false}) end |
