summaryrefslogtreecommitdiffstats
path: root/tools/perf/tests/tests-scripts.h
blob: 3508a293aaf95c0973acc3347d4cc93fae5eca17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef TESTS_SCRIPTS_H
#define TESTS_SCRIPTS_H

struct script_file {
	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);

#endif /* TESTS_SCRIPTS_H */