Tests: eliminate process timeouts from Python tests
[lttng-tools.git] / tests / regression / ust / baddr-statedump / test_baddr-statedump.py
index 723eb1ba6ba2c4c234157921873f4c87924ccf33..53f9dedd844ca0581a490b7209ac7b7965263197 100644 (file)
@@ -46,14 +46,7 @@ enable_ust_tracepoint_event(session_info, "*")
 start_session(session_info)
 
 test_process = subprocess.Popen(test_path + "prog.strip", stdout=subprocess.PIPE, stderr=subprocess.PIPE)
-if sys.version_info >= (3, 3):
-    try:
-        test_process.wait(5)
-    except subprocess.TimeoutExpired:
-        test_process.kill()
-        bail("Failed to run ust baddr-statedump test application.", session_info)
-else:
-    test_process.wait()
+test_process.wait()
 
 print_test_result(test_process.returncode == 0, current_test, "Test application exited normally")
 current_test += 1
This page took 0.023302 seconds and 4 git commands to generate.