Lines Matching refs:TEST_ASSERT_VAL

16 	TEST_ASSERT_VAL("wrong id", ev->id == 123);  in process_event_unit()
17 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__UNIT); in process_event_unit()
18 TEST_ASSERT_VAL("wrong unit", !strcmp(ev->data, "KRAVA")); in process_event_unit()
32 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_scale()
33 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__SCALE); in process_event_scale()
34 TEST_ASSERT_VAL("wrong scale", ev_data->scale == 0.123); in process_event_scale()
51 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_name()
52 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__NAME); in process_event_name()
53 TEST_ASSERT_VAL("wrong name", !strcmp(ev->data, tmp->name)); in process_event_name()
70 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_cpus()
71 TEST_ASSERT_VAL("wrong type", ev->type == PERF_EVENT_UPDATE__CPUS); in process_event_cpus()
72 TEST_ASSERT_VAL("wrong cpus", map->nr == 3); in process_event_cpus()
73 TEST_ASSERT_VAL("wrong cpus", map->map[0] == 1); in process_event_cpus()
74 TEST_ASSERT_VAL("wrong cpus", map->map[1] == 2); in process_event_cpus()
75 TEST_ASSERT_VAL("wrong cpus", map->map[2] == 3); in process_event_cpus()
87 TEST_ASSERT_VAL("failed to get evlist", evlist); in test__event_update()
91 TEST_ASSERT_VAL("failed to allos ids", in test__event_update()
98 TEST_ASSERT_VAL("failed to synthesize attr update unit", in test__event_update()
103 TEST_ASSERT_VAL("failed to synthesize attr update scale", in test__event_update()
108 TEST_ASSERT_VAL("failed to synthesize attr update name", in test__event_update()
113 TEST_ASSERT_VAL("failed to synthesize attr update cpus", in test__event_update()