mirror of
https://github.com/ceph/ceph
synced 2024-12-15 07:56:12 +00:00
d4cc161566
Clean up remaining traces of automake's .libs. This makes unittest_* tests easier to run by hand (mostly). Signed-off-by: Sage Weil <sage@redhat.com>
11 lines
280 B
Bash
Executable File
11 lines
280 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
mkdir -p traces
|
|
lttng create -o traces librbd
|
|
lttng enable-event -u 'librbd:*'
|
|
lttng add-context -u -t pthread_id
|
|
lttng start
|
|
LD_LIBRARY_PATH=../../build/lib qemu-system-i386 -m 1024 rbd:rbd/my-image:conf=../../src/ceph.conf
|
|
lttng stop
|
|
lttng view > trace.log
|