builtin-test.c (c489573b5b6ce6442ad4658d9d5ec77839b91622) builtin-test.c (3989bbf9607d6716900d9df91c46a2ce8a504b93)
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>

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

345 .desc = "PE file support",
346 .func = test__pe_file_parsing,
347 },
348 {
349 .desc = "Event expansion for cgroups",
350 .func = test__expand_cgroup_events,
351 },
352 {
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>

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

345 .desc = "PE file support",
346 .func = test__pe_file_parsing,
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 },
356 {
353 .func = NULL,
354 },
355};
356
357static struct test *tests[] = {
358 generic_tests,
359 arch_tests,
360};

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

--- 456 unchanged lines hidden ---