builtin-test.c (b70366e5d31788650b2a5cec5cd13ea80ac7e44a) builtin-test.c (075167363f8b53ade702cd83f5818eb47119b659)
1/*
2 * builtin-test.c
3 *
4 * Builtin regression testing command: ever growing number of sanity tests
5 */
6#include <unistd.h>
7#include <string.h>
8#include "builtin.h"

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

39 .desc = "Read samples using the mmap interface",
40 .func = test__basic_mmap,
41 },
42 {
43 .desc = "Parse event definition strings",
44 .func = test__parse_events,
45 },
46 {
1/*
2 * builtin-test.c
3 *
4 * Builtin regression testing command: ever growing number of sanity tests
5 */
6#include <unistd.h>
7#include <string.h>
8#include "builtin.h"

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

39 .desc = "Read samples using the mmap interface",
40 .func = test__basic_mmap,
41 },
42 {
43 .desc = "Parse event definition strings",
44 .func = test__parse_events,
45 },
46 {
47 .desc = "Simple expression parser",
48 .func = test__expr,
49 },
50 {
47 .desc = "PERF_RECORD_* events & perf_sample fields",
48 .func = test__PERF_RECORD,
49 },
50 {
51 .desc = "Parse perf pmu format",
52 .func = test__pmu,
53 },
54 {

--- 446 unchanged lines hidden ---
51 .desc = "PERF_RECORD_* events & perf_sample fields",
52 .func = test__PERF_RECORD,
53 },
54 {
55 .desc = "Parse perf pmu format",
56 .func = test__pmu,
57 },
58 {

--- 446 unchanged lines hidden ---