builtin-test.c (3989bbf9607d6716900d9df91c46a2ce8a504b93) builtin-test.c (248dd9b591db5bc5fb46a0e015753cfcfe60a345)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * builtin-test.c
4 *
5 * Builtin regression testing command: ever growing number of sanity tests
6 */
7#include <fcntl.h>
8#include <errno.h>

--- 338 unchanged lines hidden (view full) ---

347 },
348 {
349 .desc = "Event expansion for cgroups",
350 .func = test__expand_cgroup_events,
351 },
352 {
353 .desc = "Convert perf time to TSC",
354 .func = test__perf_time_to_tsc,
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * builtin-test.c
4 *
5 * Builtin regression testing command: ever growing number of sanity tests
6 */
7#include <fcntl.h>
8#include <errno.h>

--- 338 unchanged lines hidden (view full) ---

347 },
348 {
349 .desc = "Event expansion for cgroups",
350 .func = test__expand_cgroup_events,
351 },
352 {
353 .desc = "Convert perf time to TSC",
354 .func = test__perf_time_to_tsc,
355 .is_supported = test__tsc_is_supported,
355 },
356 {
357 .func = NULL,
358 },
359};
360
361static struct test *tests[] = {
362 generic_tests,

--- 458 unchanged lines hidden ---
356 },
357 {
358 .func = NULL,
359 },
360};
361
362static struct test *tests[] = {
363 generic_tests,

--- 458 unchanged lines hidden ---