View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0010238 | Compliance Test Tool (CTT) Unified Architecture | 1 - Script Issue | public | 2025-03-17 13:39 | 2025-03-17 13:39 |
Reporter | V. Monfort | Assigned To | |||
Priority | normal | Severity | major | Reproducibility | always |
Status | new | Resolution | open | ||
Product Version | 1.04.11-01.00.506 | ||||
Summary | 0010238: A&C Enable Test_003 might get stuck if no events are triggered anymore after Disable | ||||
Description | A&C Enable Test_003 might get stuck if no events are triggered anymore
The issue is that if no more events are triggered before reaching "TargetRefreshLocalTime", then the PostLoopAction is not called anymore and thus Refresh is never called. I guess the PostLoopAction might be called by AlarmCollector module even when no event is found to fix this kind of issue, a potential patch is attached. | ||||
Tags | No tags attached. | ||||
Attached Files | alarmCollectorPostLoop.patch (698 bytes)
diff --git a/UACTT_project/library/AlarmsAndConditions/AlarmCollector.js b/UACTT_project/library/AlarmsAndConditions/AlarmCollector.js index 006d9e7b..fea0a0c3 100755 --- a/UACTT_project/library/AlarmsAndConditions/AlarmCollector.js +++ b/UACTT_project/library/AlarmsAndConditions/AlarmCollector.js @@ -627,9 +627,9 @@ function AlarmCollector ( cuVariables, customInitialize ) { // Update the state if a test case was completed this.FinalizeNextTestState(conditionId); } - this.ForEachTest( "PostLoopAction" ); this.AlarmTester.RemoveEntry( events ); } + this.ForEachTest( "PostLoopAction" ); } /** | ||||
Files Affected | |||||
Date Modified | Username | Field | Change |
---|---|---|---|
2025-03-17 13:39 | V. Monfort | New Issue | |
2025-03-17 13:39 | V. Monfort | File Added: alarmCollectorPostLoop.patch |