aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/tests/builtin-test-list.h
diff options
context:
space:
mode:
authorGravatar Carsten Haitzler <carsten.haitzler@arm.com> 2022-08-12 13:16:28 +0100
committerGravatar Arnaldo Carvalho de Melo <acme@redhat.com> 2022-08-13 15:13:20 -0300
commit7391db6459388d47d657aad633cb55fc04a8d4fb (patch)
tree43025c60999f7178f97f006db43c60414203d078 /tools/perf/tests/builtin-test-list.h
parentperf vendor events: Update events for snowridgex (diff)
downloadlinux-7391db6459388d47d657aad633cb55fc04a8d4fb.tar.gz
linux-7391db6459388d47d657aad633cb55fc04a8d4fb.tar.bz2
linux-7391db6459388d47d657aad633cb55fc04a8d4fb.zip
perf test: Refactor shell tests allowing subdirs
This is a prelude to adding more tests to shell tests and in order to support putting those tests into subdirectories, I need to change the test code that scans/finds and runs them. To support subdirs I have to recurse so it's time to refactor the code to allow this and centralize the shell script finding into one location and only one single scan that builds a list of all the found tests in memory instead of it being duplicated in 3 places. This code also optimizes things like knowing the max width of desciption strings (as we can do that while we scan instead of a whole new pass of opening files). It also more cleanly filters scripts to see only *.sh files thus skipping random other files in directories like *~ backup files, other random junk/data files that may appear and the scripts must be executable to make the cut (this ensures the script lib dir is not seen as scripts to run). This avoids perf test running previous older versions of test scripts that are editor backup files as well as skipping perf.data files that may appear and so on. Reviewed-by: Leo Yan <leo.yan@linaro.org> Signed-off-by: Carsten Haitzler <carsten.haitzler@arm.com> Tested-by: Leo Yan <leo.yan@linaro.org> Cc: Mathieu Poirier <mathieu.poirier@linaro.org> Cc: Mike Leach <mike.leach@linaro.org> Cc: Suzuki Poulouse <suzuki.poulose@arm.com> Cc: coresight@lists.linaro.org Link: https://lore.kernel.org/r/20220812121641.336465-2-carsten.haitzler@foss.arm.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/builtin-test-list.h')
-rw-r--r--tools/perf/tests/builtin-test-list.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/perf/tests/builtin-test-list.h b/tools/perf/tests/builtin-test-list.h
new file mode 100644
index 000000000000..eb81f3aa6683
--- /dev/null
+++ b/tools/perf/tests/builtin-test-list.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+
+struct script_file {
+ char *dir;
+ char *file;
+ char *desc;
+};
+
+/* List available script tests to run - singleton - never freed */
+const struct script_file *list_script_files(void);
+/* Get maximum width of description string */
+int list_script_max_width(void);