Lines Matching refs:g_task_info
54 std::vector<TaskInfo> g_task_info; variable
77 g_task_info[g_priority_task_index++] = TaskInfo( priority, current_task_index ); in body_func()
151 g_task_info.clear(); g_task_info.resize( priority_nodes_num ); in test_node()
162 …CHECK_MESSAGE( (g_priority_task_index == g_task_info.size()), "Incorrect number of tasks with prio… in test_node()
163 …CHECK_MESSAGE( (priority_nodes_num == g_task_info.size()), "Incorrect number of tasks with priorit… in test_node()
169 if( g_task_info[j].my_priority == int(highest_priority_within_group) ) { in test_node()
184 if( g_task_info[i].my_task_index > int(priority_nodes_num + num_threads) ) in test_node()
655 g_task_info.push_back( TaskInfo( priority, current_task_index ) ); in common_body()
705 g_task_info.clear(); in test_use_case()
718 CHECK_MESSAGE( g_task_info.size() == 3, "" ); in test_use_case()
719 CHECK_MESSAGE( g_task_info[0].my_task_index == 0, "" ); in test_use_case()
720 CHECK_MESSAGE( g_task_info[1].my_task_index == 1, "" ); in test_use_case()
721 CHECK_MESSAGE( g_task_info[2].my_task_index == 2, "" ); in test_use_case()
723 CHECK_MESSAGE( g_task_info[0].my_priority == 0, "" ); in test_use_case()
724 …CHECK_MESSAGE( g_task_info[1].my_priority == 2, "Bypassed task with higher priority executed in wr… in test_use_case()
725 CHECK_MESSAGE( g_task_info[2].my_priority == 1, "" ); in test_use_case()