From d7b94e20ae2dc39942c1bc9eaf70ae21b090d370 Mon Sep 17 00:00:00 2001
From: Jakub Wilk <jwilk@debian.org>
Date: Thu, 8 Oct 2015 11:57:05 -0700
Subject: Don't copy test suite output to a log.

 When running the test suite, don't copy stdout and stderr output to a log
 file, as this would break under LC_ALL=C, PYTHONWARNINGS=d and python3.X.
Forwarded: not-needed
Last-Update: 2011-09-18

Patch-Name: testall-no-stdout-stderr-redirect.diff
---
 test/alltests.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/test/alltests.py b/test/alltests.py
index 28f98f6..a7cf6f1 100755
--- a/test/alltests.py
+++ b/test/alltests.py
@@ -69,9 +69,6 @@ def suite():
     sys.stdout.flush()
     return suite
 
-# must redirect stderr *before* first import of unittest
-sys.stdout = sys.stderr = Tee('alltests.out')
-
 import package_unittest
 
 
