Lines Matching refs:reason
285 std::string reason; in check_reqs() local
287 reason = check_required_configs(md.required_configs(), cfg, test_suite); in check_reqs()
288 if (!reason.empty()) in check_reqs()
289 return reason; in check_reqs()
291 reason = check_allowed_architectures(md.allowed_architectures(), cfg); in check_reqs()
292 if (!reason.empty()) in check_reqs()
293 return reason; in check_reqs()
295 reason = check_execenv(md.execenv(), cfg); in check_reqs()
296 if (!reason.empty()) in check_reqs()
297 return reason; in check_reqs()
299 reason = check_allowed_platforms(md.allowed_platforms(), cfg); in check_reqs()
300 if (!reason.empty()) in check_reqs()
301 return reason; in check_reqs()
303 reason = check_required_user(md.required_user(), cfg); in check_reqs()
304 if (!reason.empty()) in check_reqs()
305 return reason; in check_reqs()
307 reason = check_required_files(md.required_files()); in check_reqs()
308 if (!reason.empty()) in check_reqs()
309 return reason; in check_reqs()
311 reason = check_required_programs(md.required_programs()); in check_reqs()
312 if (!reason.empty()) in check_reqs()
313 return reason; in check_reqs()
315 reason = check_required_memory(md.required_memory()); in check_reqs()
316 if (!reason.empty()) in check_reqs()
317 return reason; in check_reqs()
319 reason = check_required_disk_space(md.required_disk_space(), in check_reqs()
321 if (!reason.empty()) in check_reqs()
322 return reason; in check_reqs()
324 INV(reason.empty()); in check_reqs()
325 return reason; in check_reqs()