Gen-ust-events: use options instead of arguments
[lttng-tools.git] / tests / regression / ust / fork / test_fork.py
index 62faf71f1ad121ded11c65e321f269a2a59492a5..7288bcc371c559654f61439a0ea5c4650c8a6718 100644 (file)
@@ -43,16 +43,6 @@ enable_ust_tracepoint_event(session_info, "ust_tests_fork*")
 start_session(session_info)
 
 fork_process = subprocess.Popen([test_path + "fork", test_path + "fork2"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
-
-if sys.version_info >= (3, 3):
-    try:
-        fork_process.wait(5)
-    except TimeoutExpired:
-        fork_process.kill()
-        bail("Failed to run fork test application (time out)", session_info)
-else:
-    fork_process.wait()
-
 parent_pid = -1
 child_pid = -1
 for line in fork_process.stdout:
@@ -64,6 +54,8 @@ for line in fork_process.stdout:
     if match:
         parent_pid = match.group(1)
 
+fork_process.wait()
+
 print_test_result(fork_process.returncode == 0, current_test, "Fork test application exited normally")
 current_test += 1
 
This page took 0.026253 seconds and 5 git commands to generate.