summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaikari <[email protected]>2026-01-31 15:57:23 +0300
committerGitHub <[email protected]>2026-01-31 15:57:23 +0300
commitca6f8383879f450211f31e9a3e011253693dc0d7 (patch)
tree8b2c306e53ba94fd804f5de0f924f707e742d837
parent43faaaaebc229b88352c231923b7a4809389dc67 (diff)
Delete tests/projects/test_stdin/xmake_debug.lua
-rw-r--r--tests/projects/test_stdin/xmake_debug.lua29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/projects/test_stdin/xmake_debug.lua b/tests/projects/test_stdin/xmake_debug.lua
deleted file mode 100644
index f9102a0e1..000000000
--- a/tests/projects/test_stdin/xmake_debug.lua
+++ /dev/null
@@ -1,29 +0,0 @@
-target("test_execv")
- set_kind("phony")
- on_run(function (target)
- print("Testing os.execv with sh:")
- try {
- function ()
- local ok, status = os.execv("sh", {"-c", "exit 1"})
- print("sh returned: ok=" .. tostring(ok) .. ", status=" .. tostring(status))
- end,
- catch {
- function (e)
- print("sh raised exception: " .. tostring(e))
- end
- }
- }
-
- print("Testing os.execv with pwsh:")
- try {
- function ()
- local ok, status = os.execv("pwsh", {"-c", "exit 1"})
- print("pwsh returned: ok=" .. tostring(ok) .. ", status=" .. tostring(status))
- end,
- catch {
- function (e)
- print("pwsh raised exception: " .. tostring(e))
- end
- }
- }
- end)