Lines Matching refs:TEST_ASSERT_VAL

22 	TEST_ASSERT_VAL("wrong id", ev->id == 123);  in process_event_unit()
23 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__UNIT); in process_event_unit()
24 TEST_ASSERT_VAL("wrong unit", !strcmp(ev->data, "KRAVA")); in process_event_unit()
38 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_scale()
39 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__SCALE); in process_event_scale()
40 TEST_ASSERT_VAL("wrong scale", ev_data->scale == 0.123); in process_event_scale()
57 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_name()
58 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__NAME); in process_event_name()
59 TEST_ASSERT_VAL("wrong name", !strcmp(ev->data, tmp->name)); in process_event_name()
76 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_cpus()
77 TEST_ASSERT_VAL("wrong type", ev->type == PERF_EVENT_UPDATE__CPUS); in process_event_cpus()
78 TEST_ASSERT_VAL("wrong cpus", map->nr == 3); in process_event_cpus()
79 TEST_ASSERT_VAL("wrong cpus", map->map[0] == 1); in process_event_cpus()
80 TEST_ASSERT_VAL("wrong cpus", map->map[1] == 2); in process_event_cpus()
81 TEST_ASSERT_VAL("wrong cpus", map->map[2] == 3); in process_event_cpus()
93 TEST_ASSERT_VAL("failed to get evlist", evlist); in test__event_update()
97 TEST_ASSERT_VAL("failed to allocate ids", in test__event_update()
104 TEST_ASSERT_VAL("failed to synthesize attr update unit", in test__event_update()
109 TEST_ASSERT_VAL("failed to synthesize attr update scale", in test__event_update()
114 TEST_ASSERT_VAL("failed to synthesize attr update name", in test__event_update()
119 TEST_ASSERT_VAL("failed to synthesize attr update cpus", in test__event_update()