From e40946a5be2ce11156fc7494ec81040d3cde4809 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 14 Jan 2017 09:47:33 +0100 Subject: 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 --- test/helpers.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'test/helpers.lua') diff --git a/test/helpers.lua b/test/helpers.lua index 0bc62da5d7..def0740f85 100644 --- a/test/helpers.lua +++ b/test/helpers.lua @@ -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 -- cgit