Hi Drew, On 7/1/23 13:36, Andrew Jones wrote: > On Mon, Jun 19, 2023 at 10:04:00PM +0200, Eric Auger wrote: > ... >> @@ -1201,6 +1257,9 @@ int main(int argc, char *argv[]) >> } else if (strcmp(argv[1], "pmu-basic-event-count") == 0) { >> run_event_test(argv[1], test_basic_event_count, false); >> run_event_test(argv[1], test_basic_event_count, true); >> + } else if (strcmp(argv[1], "pmu-mem-access-reliability") == 0) { >> + run_event_test(argv[1], test_mem_access_reliability, false); >> + run_event_test(argv[1], test_mem_access_reliability, true); > This breaks compilation for arm since this patch is missing the stub. > I've added it. sorry for the oversight and thanks for adding it ;-) Eric > > Thanks, > drew >