Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <internal/tests.h>
0003 #include "tests.h"
0004 
0005 int tests_failed;
0006 int tests_verbose;
0007 
0008 int main(int argc, char **argv)
0009 {
0010     __T("test cpumap", !test_cpumap(argc, argv));
0011     __T("test threadmap", !test_threadmap(argc, argv));
0012     __T("test evlist", !test_evlist(argc, argv));
0013     __T("test evsel", !test_evsel(argc, argv));
0014     return 0;
0015 }