From 53a5151cf260552cb8528f3c05c339f5e676e79f Mon Sep 17 00:00:00 2001 From: Eric J Korpela Date: Thu, 12 Feb 2015 16:58:06 -0800 Subject: [PATCH] - 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 --- sched/plan_class_spec.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sched/plan_class_spec.cpp b/sched/plan_class_spec.cpp index d574398285..4b8c91a135 100644 --- a/sched/plan_class_spec.cpp +++ b/sched/plan_class_spec.cpp @@ -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) ) {