[PATCH v5 7/9] stapsdt: add test for listing systemwide probes in absolute path object
Alan Maguire <[email protected]> Wed, 4 Mar 2026 08:01:23 +0000
| Newsgroups | dev.linux.lists.dtrace |
|---|---|
| Message-ID | <[email protected]> |
Verify using an absolute path for listing succeeds for -l and -lv. Signed-off-by: Alan Maguire <[email protected]> --- .../tst.stapsdt-notes-systemwide-l-abspath.sh | 48 +++++++++++++++++++ ...tst.stapsdt-notes-systemwide-lv-abspath.sh | 48 +++++++++++++++++++ 2 files changed, 96 insertions(+) create mode 100755 test/unittest/usdt/tst.stapsdt-notes-systemwide-l-abspath.sh create mode 100755 test/unittest/usdt/tst.stapsdt-notes-systemwide-lv-abspath.sh diff --git a/test/unittest/usdt/tst.stapsdt-notes-systemwide-l-abspath.sh b/test/unittest/usdt/tst.stapsdt-notes-systemwide-l-abspath.sh new file mode 100755 index 00000000..878e8502 --- /dev/null +++ b/test/unittest/usdt/tst.stapsdt-notes-systemwide-l-abspath.sh @@ -0,0 +1,48 @@ +#!/bin/bash +# +# Oracle Linux DTrace. +# Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved. +# Licensed under the Universal Permissive License v 1.0 as shown at +# http://oss.oracle.com/licenses/upl. + +# This test covers stapsdt probes fired by the STAP_PROBEn macros, +# testing listing probes. + +if [ $# != 1 ]; then + echo expected one argument: '<'dtrace-path'>' + exit 2 +fi + +dtrace=$1 +CC=/usr/bin/gcc +CFLAGS="-I${PWD}/test/unittest/usdt" + +DIRNAME="$tmpdir/usdt-notes.$$.$RANDOM" +mkdir -p $DIRNAME +cd $DIRNAME + +cat > test.c <<EOF +#include <sdt_notes.h> + +int +main(int argc, char **argv) +{ + STAP_PROBE(test_prov, zero); + STAP_PROBE1(test_prov, one, argc); + STAP_PROBE2(test_prov, two, 2, 3); + STAP_PROBE4(test_prov, args, argc, argv[0], argv[1] + 4, 18); +} +EOF + +${CC} ${CFLAGS} -o test test.c +if [ $? -ne 0 ]; then + echo "failed to compile test.c" >& 2 + exit 1 +fi + +TEST_PROG=$(pwd)/test + +$dtrace -lm test_prov\*:$TEST_PROG +status=$? + +exit $status diff --git a/test/unittest/usdt/tst.stapsdt-notes-systemwide-lv-abspath.sh b/test/unittest/usdt/tst.stapsdt-notes-systemwide-lv-abspath.sh new file mode 100755 index 00000000..d0ff3e84 --- /dev/null +++ b/test/unittest/usdt/tst.stapsdt-notes-systemwide-lv-abspath.sh @@ -0,0 +1,48 @@ +#!/bin/bash +# +# Oracle Linux DTrace. +# Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved. +# Licensed under the Universal Permissive License v 1.0 as shown at +# http://oss.oracle.com/licenses/upl. + +# This test covers stapsdt probes fired by the STAP_PROBEn macros, +# testing listing probes. + +if [ $# != 1 ]; then + echo expected one argument: '<'dtrace-path'>' + exit 2 +fi + +dtrace=$1 +CC=/usr/bin/gcc +CFLAGS="-I${PWD}/test/unittest/usdt" + +DIRNAME="$tmpdir/usdt-notes.$$.$RANDOM" +mkdir -p $DIRNAME +cd $DIRNAME + +cat > test.c <<EOF +#include <sdt_notes.h> + +int +main(int argc, char **argv) +{ + STAP_PROBE(test_prov, zero); + STAP_PROBE1(test_prov, one, argc); + STAP_PROBE2(test_prov, two, argc, argv[0][0]); + STAP_PROBE4(test_prov, args, argc, argv[0], argv[1] + 4, 18); +} +EOF + +${CC} ${CFLAGS} -o test test.c +if [ $? -ne 0 ]; then + echo "failed to compile test.c" >& 2 + exit 1 +fi + +TEST_PROG=$(pwd)/test + +$dtrace -lvm test_prov\*:$TEST_PROG +status=$? + +exit $status -- 2.43.5