X-Git-Url: https://code.delx.au/proxy/blobdiff_plain/3f1f4f365817097fb3c43608f92f8cc1aa3ea3f5..12f7690073e7f17d0c190fdff0229366e6744656:/test_proxy.py diff --git a/test_proxy.py b/test_proxy.py index b9d4f81..68743d2 100755 --- a/test_proxy.py +++ b/test_proxy.py @@ -370,13 +370,13 @@ class SocksServer(object): self.env = {} self.env["LISTEN_PORT"] = str(SOCKS_PORT) self.env.update(extra_env) - self.devnull = open("/dev/null", "w") + self.log_output = open("out.log", "a") def __enter__(self): self.process = subprocess.Popen( args=["./socks5server"], - stdout=self.devnull, - stderr=self.devnull, + stdout=self.log_output, + stderr=self.log_output, env=self.env, ) @@ -385,7 +385,7 @@ class SocksServer(object): return self def __exit__(self, exc_type, exc_val, exc_tb): - self.devnull.close() + self.log_output.close() self.process.terminate() self.process.wait()