summaryrefslogtreecommitdiff
path: root/framework/exectest.py
diff options
context:
space:
mode:
Diffstat (limited to 'framework/exectest.py')
-rw-r--r--framework/exectest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/exectest.py b/framework/exectest.py
index 31848653..8d6a3bcc 100644
--- a/framework/exectest.py
+++ b/framework/exectest.py
@@ -41,7 +41,8 @@ class PlainExecTest(Test):
proc = subprocess.Popen(
self.command,
stdout=subprocess.PIPE,
- stderr=subprocess.PIPE
+ stderr=subprocess.PIPE,
+ universal_newlines=True
)
out,err = proc.communicate()