summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/shared/gtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/shared/gtest.py b/tests/shared/gtest.py
index a29eee553..b77202b26 100644
--- a/tests/shared/gtest.py
+++ b/tests/shared/gtest.py
@@ -61,7 +61,7 @@ class _GTestMeta(type):
def make_tests(exe, result):
env = os.environ.copy()
env['G_MESSAGES_DEBUG'] = ''
- test = subprocess.Popen([exe, '-l'], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, env=env)
+ test = subprocess.Popen([exe, '-l'], stdout=subprocess.PIPE, stderr=None, env=env)
stdout, stderr = test.communicate()
if test.returncode != 0: