summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/native_aot/test.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2026-03-20 22:33:30 +0800
committerruki <[email protected]>2026-03-20 22:33:30 +0800
commit2b0964deaf94355eea91dff12d017525b49c3737 (patch)
tree8fc1d3decacbf9d2371ef58f96ebbad13316627e /tests/projects/csharp/native_aot/test.lua
parentfaac0865a79ef38c47bb81d7fa3b42f05ace5538 (diff)
remove native_aot
Diffstat (limited to 'tests/projects/csharp/native_aot/test.lua')
-rw-r--r--tests/projects/csharp/native_aot/test.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/projects/csharp/native_aot/test.lua b/tests/projects/csharp/native_aot/test.lua
deleted file mode 100644
index d909316b7..000000000
--- a/tests/projects/csharp/native_aot/test.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-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()
- else
- return t:skip("dotnet sdk not found")
- end
-end