Test fix: redirect python test subprocess output to /dev/null
[lttng-tools.git] / tests / regression / ust / type-declarations / test_type_declarations.py
index da2f57987f7aa40818fb25b5de66b111730b34f0..45394c9a6f4e9363819abf6b4dd19f461d304a24 100644 (file)
@@ -44,7 +44,7 @@ start_session(session_info)
 test_env = os.environ.copy()
 test_env["LTTNG_UST_REGISTER_TIMEOUT"] = "-1"
 
-td_process = subprocess.Popen(test_path + "type-declarations", stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=test_env)
+td_process = subprocess.Popen(test_path + "type-declarations", stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=test_env)
 td_process.wait()
 
 print_test_result(td_process.returncode == 0, current_test, "Test application exited normally")
This page took 0.025063 seconds and 5 git commands to generate.