- SCHED: Scheduler didn't have a means of parsing android version setting

from plan_class_spec.xml so the min/max_android_version settings weren't
  functioning
This commit is contained in:
Eric J Korpela 2015-02-12 16:58:06 -08:00
parent 90daa20025
commit 53a5151cf2
1 changed files with 2 additions and 0 deletions

View File

@ -897,6 +897,8 @@ int PLAN_CLASS_SPEC::parse(XML_PARSER& xp) {
}
if (xp.parse_double("min_os_version", min_os_version)) continue;
if (xp.parse_double("max_os_version", max_os_version)) continue;
if (xp.parse_double("min_android_version", min_android_version)) continue;
if (xp.parse_double("max_android_version", max_android_version)) continue;
if (xp.parse_str("project_prefs_tag", project_prefs_tag, sizeof(project_prefs_tag))) continue;
if (xp.parse_str("project_prefs_regex", buf, sizeof(buf))) {
if (regcomp(&(project_prefs_regex), buf, REG_EXTENDED|REG_NOSUB) ) {