Test fix: redirect python test subprocess output to /dev/null
[lttng-tools.git] / tests / regression / ust / ust-dl / test_ust-dl.py
index d9bc60a75bc27dd1a22c84ce7802ea3526f49b1c..41d197c0c28a9af1c404cdf98e612ee6905523a9 100644 (file)
@@ -49,7 +49,7 @@ test_env = os.environ.copy()
 test_env["LD_PRELOAD"] = test_env.get("LD_PRELOAD", "") + ":liblttng-ust-dl.so"
 test_env["LD_LIBRARY_PATH"] = test_env.get("LD_LIBRARY_PATH", "") + ":" + test_path
 test_process = subprocess.Popen(test_path + "prog",
-                                stdout=subprocess.PIPE, stderr=subprocess.PIPE,
+                                stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,
                                 env=test_env)
 test_process.wait()
 
This page took 0.023577 seconds and 4 git commands to generate.