diff options
author | Benjamin Berg <bberg@redhat.com> | 2020-05-07 18:44:53 +0200 |
---|---|---|
committer | Georges Basile Stavracas Neto <georges.stavracas@gmail.com> | 2020-05-11 19:43:38 +0000 |
commit | 57685f03439b19679c3eb3cc9feab61919319362 (patch) | |
tree | dcb1e0ee928317b95d9c03e36cd32b3552e1f861 /tests/shared | |
parent | 8658123f8b96bd2388cd516445075f8e89353c69 (diff) | |
download | gnome-control-center-57685f03439b19679c3eb3cc9feab61919319362.tar.gz |
tests: Show why tests are not split
The GTest python class tries to split tests into separte runs. However,
that can fail, show why.
Diffstat (limited to 'tests/shared')
-rw-r--r-- | tests/shared/gtest.py | 2 |
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: |