win: test: enable job_spec.lua

- Default to powershell.
- Avoid hardcoded "-c".
- Remove ^M character from received lines.
- pending_win32(): clear() is unnecessary and it pollutes the tests.

Closes #3973
Helped-by: Rui Abreu Ferreira <raf-ep@gmx.com>
This commit is contained in:
Justin M. Keyes
2017-01-14 09:47:33 +01:00
parent 75e6af44e0
commit e40946a5be
5 changed files with 120 additions and 79 deletions

View File

@@ -68,6 +68,7 @@ local uname = (function()
local status, f = pcall(io.popen, "uname -s")
if status then
platform = f:read("*l")
f:close()
else
platform = 'Windows'
end