X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=extras%2Fcore-handler%2Ftest.sh;h=c36fdf78c7c28a80fb93c82368cbbc7126bc5102;hp=0c04bcd97fed9f2153238a17a31793f09098226d;hb=HEAD;hpb=57f0bd0c140c6a5b1f48b45a6680c55348ddbe96 diff --git a/extras/core-handler/test.sh b/extras/core-handler/test.sh index 0c04bcd97..fe565251d 100755 --- a/extras/core-handler/test.sh +++ b/extras/core-handler/test.sh @@ -1,32 +1,23 @@ #!/bin/sh # -# Copyright (C) 2013 - Christian Babeux +# Copyright (C) 2013 Christian Babeux # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; only version 2 -# of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# SPDX-License-Identifier: GPL-2.0-only # -LTTNG_BIN="lttng" +SESSION_NAME="coredump-handler" -CHANNEL_NAME="chan" +# Just recording kernel event sched_switch as an example, but we can as +# well record user-space events from UST domain. EVENT_NAME="sched_switch" -echo "Setup..." -$LTTNG_BIN create --no-output -$LTTNG_BIN enable-channel "${CHANNEL_NAME}" -k --overwrite --output mmap -$LTTNG_BIN enable-event "${EVENT_NAME}" -c "${CHANNEL_NAME}" -k -$LTTNG_BIN start +SNAPSHOT_PATH="/tmp/lttng/snapshot" +SNAPSHOT_URI="file://${SNAPSHOT_PATH}" + +echo "Setup ${SESSION_NAME}..." +$LTTNG_BIN create ${SESSION_NAME} --snapshot -U ${SNAPSHOT_PATH} +$LTTNG_BIN enable-event ${EVENT_NAME} -k -s ${SESSION_NAME} +$LTTNG_BIN start ${SESSION_NAME} echo "Sleeping..." sleep 10 @@ -37,7 +28,8 @@ $(dirname $0)/crash echo "Sleeping..." sleep 10 -$LTTNG_BIN stop -$LTTNG_BIN destroy +$LTTNG_BIN stop ${SESSION_NAME} +$LTTNG_BIN destroy ${SESSION_NAME} -echo "Core dump and snapshot will be available in /tmp/lttng/{core,snapshot}." +echo "Core dump will be available in /tmp/lttng/core." +echo "Snapshot will be available in ${SNAPSHOT_PATH}."