[PATCH V2 0/6] perf tools: Add dlfilter test

From: Adrian Hunter
Date: Wed Aug 11 2021 - 06:10:21 EST


Hi

Here is V2 of some minor fixes / improvements to dlfilters and a new perf
test for the dlfilter C API.


Changes in V2:

perf script: Fix documented const'ness of perf_dlfilter_fns
New patch

perf tools: Add dlfilter test
Do not make perf_dlfilter_fns const in test dlfilter


Adrian Hunter (6):
perf script: Fix documented const'ness of perf_dlfilter_fns
perf script: Fix unnecessary machine_resolve()
perf script: Fix --list-dlfilters documentation
perf tools: Amend dlfilter documentation wrt library dependencies
perf tools: Move perf_dlfilters.h in the source tree
perf tools: Add dlfilter test

tools/perf/Documentation/perf-dlfilter.txt | 12 +-
tools/perf/Documentation/perf-script.txt | 2 +-
tools/perf/Makefile.perf | 17 +-
tools/perf/builtin-script.c | 2 +-
tools/perf/dlfilters/dlfilter-test-api-v0.c | 336 ++++++++++++++++++
tools/perf/{util => include/perf}/perf_dlfilter.h | 0
tools/perf/tests/Build | 1 +
tools/perf/tests/builtin-test.c | 4 +
tools/perf/tests/dlfilter-test.c | 411 ++++++++++++++++++++++
tools/perf/tests/tests.h | 1 +
tools/perf/util/dlfilter.c | 6 +-
tools/perf/util/dlfilter.h | 2 +
12 files changed, 785 insertions(+), 9 deletions(-)
create mode 100644 tools/perf/dlfilters/dlfilter-test-api-v0.c
rename tools/perf/{util => include/perf}/perf_dlfilter.h (100%)
create mode 100644 tools/perf/tests/dlfilter-test.c


Regards
Adrian