mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
chore(tests): fix failing tests on windows (as recommended by @SnorlaxAssist)
This commit is contained in:
parent
947243fcd9
commit
66e4cb7a70
1 changed files with 9 additions and 4 deletions
|
@ -162,13 +162,18 @@ assert(
|
|||
)
|
||||
|
||||
-- Passing stdin strings should work
|
||||
local stdinChild = process.spawn((((not IS_WINDOWS) and "xargs") or "powershell"), {
|
||||
"echo",
|
||||
|
||||
local stdinChild = process.spawn(not IS_WINDOWS and "xargs" or "powershell", {
|
||||
"echo",
|
||||
}, {
|
||||
stdin = (IS_WINDOWS and (echoMessage .. "\n\n")) or echoMessage,
|
||||
stdin = echoMessage .. (IS_WINDOWS and "\n\n" or ""),
|
||||
})
|
||||
|
||||
local stdinChildOut = stdinChild.stdout
|
||||
if IS_WINDOWS then
|
||||
stdinChildOut = stdinChildOut:sub(#stdinChildOut - #echoMessage - 1, #stdinChildOut)
|
||||
end
|
||||
assert(
|
||||
stdinChild.stdout == (((IS_WINDOWS and `{string.char(239)}{string.char(191)}`) or "") .. echoMessage .. "\n"), -- Windows "echo" adds these "escape codes" to strings
|
||||
stdinChildOut == echoMessage .. trailingAddition,
|
||||
"Stdin passing did not return proper output"
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue