1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/*
* SPDX-FileCopyrightText: 2025 Philippe Proulx <pproulx@efficios.com>
* SPDX-License-Identifier: GPL-2.0-only
*/
#include <common/macros.hpp>
#include <common/make-unique-wrapper.hpp>
#include <common/string-utils/c-string-view.hpp>
#include <lttng/lttng.h>
#include <tap/tap.h>
namespace {
void check_event_name(lttng_userspace_probe_location& raw_loc, const char *const name)
{
auto loc = lttng::make_unique_wrapper<lttng_userspace_probe_location,
lttng_userspace_probe_location_destroy>(&raw_loc);
auto rule = lttng::make_unique_wrapper<lttng_event_rule, lttng_event_rule_destroy>(
lttng_event_rule_kernel_uprobe_create(loc.get()));
const char *actual_name;
const auto ret = lttng_event_rule_kernel_uprobe_get_event_name(rule.get(), &actual_name);
LTTNG_ASSERT(ret == LTTNG_EVENT_RULE_STATUS_OK);
LTTNG_ASSERT(actual_name);
if (!ok(lttng::c_string_view(actual_name) == name,
"lttng_event_rule_kernel_uprobe_create - The event name `%s` is expected",
name)) {
diag("Expecting `%s`; got `%s`", name, actual_name);
}
}
} /* namespace */
int main()
{
plan_tests(2);
check_event_name(
*lttng_userspace_probe_location_function_create(
"/bin/sh",
"meow_mix",
lttng_userspace_probe_location_lookup_method_function_elf_create()),
"elf:/bin/sh:meow_mix");
check_event_name(
*lttng_userspace_probe_location_tracepoint_create(
"/bin/sh",
"meow",
"mix",
lttng_userspace_probe_location_lookup_method_tracepoint_sdt_create()),
"sdt:/bin/sh:meow:mix");
return exit_status();
}
|