commit 978bcf873c5705bf8f5536a5fbbf7447e2165317 Author: George Kadianakis desnacked@riseup.net Date: Fri Apr 13 15:23:02 2012 +0200
Disable safelogging in integration tests. --- src/test/tester.py.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/test/tester.py.in b/src/test/tester.py.in index ea46d1f..24f83b0 100644 --- a/src/test/tester.py.in +++ b/src/test/tester.py.in @@ -43,7 +43,7 @@ def diff(label, expected, received):
class Obfsproxy(subprocess.Popen): def __init__(self, *args, **kwargs): - argv = ["./obfsproxy", "--log-min-severity=debug"] + argv = ["./obfsproxy", "--no-safe-logging", "--log-min-severity=debug"] if len(args) == 1 and (isinstance(args[0], list) or isinstance(args[0], tuple)): argv.extend(args[0])