Changeset 2f4118f in rtems-central
- Timestamp:
- 11/25/21 06:42:48 (7 months ago)
- Branches:
- master
- Children:
- 4d7f331
- Parents:
- cef12a3
- git-author:
- Sebastian Huber <sebastian.huber@…> (11/25/21 06:42:48)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (11/25/21 06:43:59)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
specview.py
rcef12a3 r2f4118f 192 192 193 193 def _validate(item: Item, enabled: List[str]) -> bool: 194 if not item.is_enabled(enabled):195 return True196 194 count = _validation_count(item, enabled) 197 195 validated = True 198 196 for child in item.children(_CHILD_ROLES): 199 validated = _validate(child, enabled) and validated 200 count += 1 197 if child.is_enabled(enabled): 198 validated = _validate(child, enabled) and validated 199 count += 1 201 200 for parent in item.parents(_PARENT_ROLES): 202 validated = _validate(parent, enabled) and validated 203 count += 1 201 if parent.is_enabled(enabled): 202 validated = _validate(parent, enabled) and validated 203 count += 1 204 204 pre_qualified = _is_pre_qualified(item) 205 205 item["_pre_qualified"] = pre_qualified
Note: See TracChangeset
for help on using the changeset viewer.