diff options
| -rw-r--r-- | tests/projects/csharp/console/test.lua | 3 | ||||
| -rw-r--r-- | tests/projects/csharp/console_with_runtime_json/test.lua | 3 | ||||
| -rw-r--r-- | tests/projects/csharp/exe_with_library/test.lua | 3 | ||||
| -rw-r--r-- | tests/projects/csharp/exe_with_package/test.lua | 3 | ||||
| -rw-r--r-- | tests/projects/csharp/multiple_library/test.lua | 3 | ||||
| -rw-r--r-- | tests/projects/csharp/web_project/test.lua | 3 |
6 files changed, 18 insertions, 0 deletions
diff --git a/tests/projects/csharp/console/test.lua b/tests/projects/csharp/console/test.lua index e67becab3..d909316b7 100644 --- a/tests/projects/csharp/console/test.lua +++ b/tests/projects/csharp/console/test.lua @@ -1,6 +1,9 @@ import("detect.sdks.find_dotnet") function test_build(t) + if is_subhost("msys") then + return t:skip("csharp not supported on msys") + end local dotnet = find_dotnet() if dotnet and dotnet.sdkver then t:build() diff --git a/tests/projects/csharp/console_with_runtime_json/test.lua b/tests/projects/csharp/console_with_runtime_json/test.lua index e67becab3..d909316b7 100644 --- a/tests/projects/csharp/console_with_runtime_json/test.lua +++ b/tests/projects/csharp/console_with_runtime_json/test.lua @@ -1,6 +1,9 @@ import("detect.sdks.find_dotnet") function test_build(t) + if is_subhost("msys") then + return t:skip("csharp not supported on msys") + end local dotnet = find_dotnet() if dotnet and dotnet.sdkver then t:build() diff --git a/tests/projects/csharp/exe_with_library/test.lua b/tests/projects/csharp/exe_with_library/test.lua index e67becab3..d909316b7 100644 --- a/tests/projects/csharp/exe_with_library/test.lua +++ b/tests/projects/csharp/exe_with_library/test.lua @@ -1,6 +1,9 @@ import("detect.sdks.find_dotnet") function test_build(t) + if is_subhost("msys") then + return t:skip("csharp not supported on msys") + end local dotnet = find_dotnet() if dotnet and dotnet.sdkver then t:build() diff --git a/tests/projects/csharp/exe_with_package/test.lua b/tests/projects/csharp/exe_with_package/test.lua index e67becab3..d909316b7 100644 --- a/tests/projects/csharp/exe_with_package/test.lua +++ b/tests/projects/csharp/exe_with_package/test.lua @@ -1,6 +1,9 @@ import("detect.sdks.find_dotnet") function test_build(t) + if is_subhost("msys") then + return t:skip("csharp not supported on msys") + end local dotnet = find_dotnet() if dotnet and dotnet.sdkver then t:build() diff --git a/tests/projects/csharp/multiple_library/test.lua b/tests/projects/csharp/multiple_library/test.lua index e67becab3..d909316b7 100644 --- a/tests/projects/csharp/multiple_library/test.lua +++ b/tests/projects/csharp/multiple_library/test.lua @@ -1,6 +1,9 @@ import("detect.sdks.find_dotnet") function test_build(t) + if is_subhost("msys") then + return t:skip("csharp not supported on msys") + end local dotnet = find_dotnet() if dotnet and dotnet.sdkver then t:build() diff --git a/tests/projects/csharp/web_project/test.lua b/tests/projects/csharp/web_project/test.lua index e67becab3..d909316b7 100644 --- a/tests/projects/csharp/web_project/test.lua +++ b/tests/projects/csharp/web_project/test.lua @@ -1,6 +1,9 @@ import("detect.sdks.find_dotnet") function test_build(t) + if is_subhost("msys") then + return t:skip("csharp not supported on msys") + end local dotnet = find_dotnet() if dotnet and dotnet.sdkver then t:build() |
