From f36f0f2461a7f0447e92f977ff9c0c71fcb08ffb Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Tue, 10 Mar 2020 18:10:42 +0000 Subject: Tests: redirect tests output to the stdout. --- test/unit/applications/lang/java.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/unit/applications/lang/java.py') diff --git a/test/unit/applications/lang/java.py b/test/unit/applications/lang/java.py index a370d96b..a8a09ce5 100644 --- a/test/unit/applications/lang/java.py +++ b/test/unit/applications/lang/java.py @@ -1,7 +1,7 @@ import os import glob import shutil -from subprocess import Popen +import subprocess from unit.applications.proto import TestApplicationProto @@ -64,7 +64,7 @@ class TestApplicationJava(TestApplicationProto): javac.extend(src) try: - process = Popen(javac) + process = subprocess.Popen(javac, stderr=subprocess.STDOUT) process.communicate() except: -- cgit