aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/perf/tests/main.c
blob: 56423fd4db19b2c31efcedc80aab157855bf2e00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: GPL-2.0
#include <internal/tests.h>
#include "tests.h"

int tests_failed;
int tests_verbose;

int main(int argc, char **argv)
{
	__T("test cpumap", !test_cpumap(argc, argv));
	__T("test threadmap", !test_threadmap(argc, argv));
	__T("test evlist", !test_evlist(argc, argv));
	__T("test evsel", !test_evsel(argc, argv));
	return 0;
}