Test fix: redirect python test subprocess output to /dev/null
[lttng-tools.git] / tests / regression / ust / libc-wrapper / test_libc-wrapper.py
index 545d5662f3030ef64d2e7880f984c6f855a55328..2870c81c1e47b743a6923aa742df3bc7115fc9d8 100644 (file)
@@ -42,7 +42,7 @@ session_info = create_session()
 enable_ust_tracepoint_event(session_info, "lttng_ust_libc*")
 start_session(session_info)
 
-malloc_process = subprocess.Popen(test_path + "prog", stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+malloc_process = subprocess.Popen(test_path + "prog", stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
 malloc_process.wait()
 
 print_test_result(malloc_process.returncode == 0, current_test, "Test application exited normally")
This page took 0.022827 seconds and 4 git commands to generate.