main.c 361 B

123456789101112131415
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <internal/tests.h>
  3. #include "tests.h"
  4. int tests_failed;
  5. int tests_verbose;
  6. int main(int argc, char **argv)
  7. {
  8. __T("test cpumap", !test_cpumap(argc, argv));
  9. __T("test threadmap", !test_threadmap(argc, argv));
  10. __T("test evlist", !test_evlist(argc, argv));
  11. __T("test evsel", !test_evsel(argc, argv));
  12. return 0;
  13. }