TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
NUM_TESTS=2071
-
+DELAYUS=500000
+LIVEVIEWER_TIMEOUT=10 # Timeout in seconds
PAGE_SIZE=$(getconf PAGE_SIZE)
TRACE_PATH=$(mktemp -d -t tmp.test_clear_ust_trace_path.XXXXXX)
fi
fi
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_streaming_no_event ()
validate_directory_empty "$local_path"
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_streaming_rotate_clear ()
fi
validate_trace_count $EVENT_NAME $local_path $expect_count
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_streaming_clear_rotate ()
fi
validate_trace_count $EVENT_NAME $local_path $expect_count
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_streaming_live ()
diag "Test ust streaming live clear"
diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type"
- create_lttng_session_uri $SESSION_NAME net://localhost "--live"
+ create_lttng_session_uri $SESSION_NAME net://localhost "--live=${DELAYUS}"
enable_ust_lttng_channel_ok $SESSION_NAME $channel_name --buffers-$buffer_type
enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $channel_name
start_lttng_tracing_ok $SESSION_NAME
validate_directory_empty $local_path
fi
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
#no clear
local remote_trace_path="${HOSTNAME}/${SESSION_NAME}"
local channel_name="chan"
local bt_output_path=$(mktemp -u -t tmp.test_${FUNCNAME[0]}_bt_output_path.XXXXXX)
+ local bt_error_path=$(mktemp -t "tmp.${FUNCNAME[0]}_bt_error.XXXXXX")
local file_sync_before_exit=$(mktemp -u -t tmp.test_${FUNCNAME[0]}_sync_before_exit.XXXXXX)
diag "Test ust basic streaming live with viewer"
diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type"
- create_lttng_session_uri $SESSION_NAME net://localhost "--live"
+ create_lttng_session_uri $SESSION_NAME net://localhost "--live=${DELAYUS}"
enable_ust_lttng_channel_ok $SESSION_NAME $channel_name --buffers-$buffer_type
enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $channel_name
start_lttng_tracing_ok $SESSION_NAME
wait_live_trace_ready net://localhost
# Connect a live viewer
- $BABELTRACE_BIN -i lttng-live net://localhost/host/$remote_trace_path > $bt_output_path &
+ $BABELTRACE_BIN -i lttng-live net://localhost/host/$remote_trace_path --params=session-not-found-action=end 1> $bt_output_path 2> "${bt_error_path}" &
local viewer_pid=$!
+ local viewer_iter=0
wait_live_viewer_connect net://localhost
while [ $evcount -ne 10 ]; do
evcount=$(cat $bt_output_path | wc -l)
sleep 0.1
+ viewer_iter=$((viewer_iter + 1))
+ if [ "${viewer_iter}" -gt $((LIVEVIEWER_TIMEOUT * 10)) ] ; then
+ break;
+ fi
done
- pass "Live viewer read $evcount events, expect 10"
+ is "${evcount}" 10 "Live viewer read $evcount events, expect 10"
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
touch $file_sync_before_exit
diag "Waiting for application to exit"
wait $app_pid
pass "Wait for viewer to exit"
rm -f $bt_output_path
+ clean_path "${bt_error_path}"
rm -f $file_sync_before_exit
}
local remote_trace_path="${HOSTNAME}/${SESSION_NAME}"
local channel_name="chan"
local bt_output_path=$(mktemp -u -t tmp.test_${FUNCNAME[0]}_bt_output_path.XXXXXX)
+ local bt_error_path=$(mktemp -t "tmp.${FUNCNAME[0]}_bt_error.XXXXXX")
diag "Test ust streaming live clear with viewer"
diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type"
- create_lttng_session_uri $SESSION_NAME net://localhost "--live"
+ create_lttng_session_uri $SESSION_NAME net://localhost "--live=${DELAYUS}"
enable_ust_lttng_channel_ok $SESSION_NAME $channel_name --buffers-$buffer_type
enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $channel_name
start_lttng_tracing_ok $SESSION_NAME
wait_live_trace_ready net://localhost
# Connect a live viewer
- $BABELTRACE_BIN -i lttng-live net://localhost/host/$remote_trace_path > $bt_output_path &
+ $BABELTRACE_BIN -i lttng-live net://localhost/host/$remote_trace_path --params=session-not-found-action=end 1> $bt_output_path 2> "${bt_error_path}" &
local viewer_pid=$!
wait_live_viewer_connect net://localhost
do_clear_session $SESSION_NAME $tracing_active $clear_twice 0 0
stop_lttng_tracing_ok $SESSION_NAME
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
diag "Wait for viewer to exit"
wait $viewer_pid
ok $? "Babeltrace succeeds"
pass "Wait for viewer to exit"
clean_path $bt_output_path
+ clean_path "${bt_error_path}"
}
function test_ust_streaming_live_viewer_new_metadata_after_clear ()
diag "Test ust streaming live clear with viewer with new metadata after clear"
diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type"
- create_lttng_session_uri "$SESSION_NAME" net://localhost "--live"
+ create_lttng_session_uri "$SESSION_NAME" net://localhost "--live=${DELAYUS}"
enable_ust_lttng_channel_ok "$SESSION_NAME" $channel_name "--buffers-$buffer_type"
# The vpid context is added to filter events based on the vpid of the
wait_live_trace_ready net://localhost
# Connect a live viewer
- $BABELTRACE_BIN -i lttng-live "net://localhost/host/$remote_trace_path" 1> "$bt_output_path" 2> "$bt_error_path" &
+ $BABELTRACE_BIN -i lttng-live "net://localhost/host/$remote_trace_path" --params=session-not-found-action=end 1> "$bt_output_path" 2> "$bt_error_path" &
local viewer_pid=$!
+ local viewer_iter=0
wait_live_viewer_connect net://localhost
while [ $evcount -ne 10 ]; do
evcount=$(wc -l < "$bt_output_path")
sleep 0.1
+ viewer_iter=$((viewer_iter + 1))
+ if [ "${viewer_iter}" -gt $((LIVEVIEWER_TIMEOUT * 10)) ] ; then
+ break
+ fi
done
- pass "Live viewer read $evcount events, expect 10"
+ is "${evcount}" 10 "Live viewer read $evcount events, expect 10"
do_clear_session "$SESSION_NAME" "$tracing_active" "$clear_twice" 0 0
diag "Wait until viewer sees all 12 expected events"
local evcount=0
+ local viewer_iter=0
while [ $evcount -ne 12 ]; do
evcount=$(wc -l < "$bt_output_path")
sleep 0.1
+ viewer_iter=$((viewer_iter + 1))
+ if [ "${viewer_iter}" -gt $((LIVEVIEWER_TIMEOUT * 10)) ]; then
+ break
+ fi
done
- pass "Live viewer read $evcount events, expect 12"
+ is "${evcount}" 12 "Live viewer read $evcount events, expect 12"
stop_lttng_tracing_ok "$SESSION_NAME"
- destroy_lttng_session_ok "$SESSION_NAME"
+ destroy_lttng_session_ok "$SESSION_NAME" --no-wait
touch "$file_sync_before_exit"
diag "Waiting for application to exit"
fi
fi
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_local_no_event ()
validate_directory_empty "$TRACE_PATH"
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_local_rotate_clear ()
fi
validate_trace_count $EVENT_NAME $TRACE_PATH $expect_count
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_local_clear_rotate ()
fi
validate_trace_count $EVENT_NAME $TRACE_PATH $expect_count
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function do_ust_snapshot ()
create_lttng_session_uri $SESSION_NAME net://localhost "--snapshot"
do_ust_snapshot $SESSION_NAME $TRACE_PATH $tracing_active $clear_twice $buffer_type
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_local_snapshot ()
create_lttng_session_ok $SESSION_NAME $TRACE_PATH "--snapshot"
do_ust_snapshot $SESSION_NAME $TRACE_PATH $tracing_active $clear_twice $buffer_type
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
# snapshot for per-pid is tested independently of the "buffer type" parameter
# Release the application.
touch ${file_sync_before_exit}
wait "${app_pid}"
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
rm -f ${file_sync_before_last}
rm -f ${file_sync_before_last_touch}
validate_trace_count $EVENT_NAME $local_path 20
fi
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
# With 1 byte per event (as strict minimum), generating 200000 events
validate_trace_count_range_incl_min_excl_max $EVENT_NAME $local_path 1 200000
fi
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
}
function test_ust_disallow_clear ()
enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME
start_lttng_tracing_ok $SESSION_NAME
lttng_clear_session_fail $SESSION_NAME
- destroy_lttng_session_ok $SESSION_NAME
+ destroy_lttng_session_ok $SESSION_NAME --no-wait
stop_lttng_sessiond
stop_lttng_relayd