builtin-test.c (e23c34bb41da65f354fb7eee04300c56ee48f60c) | builtin-test.c (aa16b81fe916378ef6474530c59f719c36cd6ec4) |
---|---|
1/* 2 * builtin-test.c 3 * 4 * Builtin regression testing command: ever growing number of sanity tests 5 */ 6#include "builtin.h" 7#include "intlist.h" 8#include "tests.h" --- 101 unchanged lines hidden (view full) --- 110 { 111 .desc = "Test using a dummy software event to keep tracking", 112 .func = test__keep_tracking, 113 }, 114 { 115 .desc = "Test parsing with no sample_id_all bit set", 116 .func = test__parse_no_sample_id_all, 117 }, | 1/* 2 * builtin-test.c 3 * 4 * Builtin regression testing command: ever growing number of sanity tests 5 */ 6#include "builtin.h" 7#include "intlist.h" 8#include "tests.h" --- 101 unchanged lines hidden (view full) --- 110 { 111 .desc = "Test using a dummy software event to keep tracking", 112 .func = test__keep_tracking, 113 }, 114 { 115 .desc = "Test parsing with no sample_id_all bit set", 116 .func = test__parse_no_sample_id_all, 117 }, |
118#if defined(__x86_64__) || defined(__i386__) 119#ifdef HAVE_LIBUNWIND_SUPPORT |
|
118 { | 120 { |
121 .desc = "Test dwarf unwind", 122 .func = test__dwarf_unwind, 123 }, 124#endif 125#endif 126 { |
|
119 .func = NULL, 120 }, 121}; 122 123static bool perf_test__matches(int curr, int argc, const char *argv[]) 124{ 125 int i; 126 --- 115 unchanged lines hidden --- | 127 .func = NULL, 128 }, 129}; 130 131static bool perf_test__matches(int curr, int argc, const char *argv[]) 132{ 133 int i; 134 --- 115 unchanged lines hidden --- |