Lines Matching refs:reason
1083 std::string reason; in check_reqs() local
1085 reason = check_required_configs(md.required_configs(), cfg, test_suite); in check_reqs()
1086 if (!reason.empty()) in check_reqs()
1087 return reason; in check_reqs()
1089 reason = check_allowed_architectures(md.allowed_architectures(), cfg); in check_reqs()
1090 if (!reason.empty()) in check_reqs()
1091 return reason; in check_reqs()
1093 reason = check_allowed_platforms(md.allowed_platforms(), cfg); in check_reqs()
1094 if (!reason.empty()) in check_reqs()
1095 return reason; in check_reqs()
1097 reason = check_required_user(md.required_user(), cfg); in check_reqs()
1098 if (!reason.empty()) in check_reqs()
1099 return reason; in check_reqs()
1101 reason = check_required_files(md.required_files()); in check_reqs()
1102 if (!reason.empty()) in check_reqs()
1103 return reason; in check_reqs()
1105 reason = check_required_programs(md.required_programs()); in check_reqs()
1106 if (!reason.empty()) in check_reqs()
1107 return reason; in check_reqs()
1109 reason = check_required_memory(md.required_memory()); in check_reqs()
1110 if (!reason.empty()) in check_reqs()
1111 return reason; in check_reqs()
1113 INV(reason.empty()); in check_reqs()
1114 return reason; in check_reqs()