remove all sp and bw320 test cases, remove p3p and coe for 452

This commit is contained in:
2026-05-28 16:13:54 -04:00
parent c1aaf69fd0
commit 74d8a8565e
4 changed files with 6 additions and 11 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
+6 -11
View File
@@ -245,19 +245,14 @@ def scan_targets(target_dir):
#print(f"[scanner] skip (no test_id): {parent_name}/{filename}") #print(f"[scanner] skip (no test_id): {parent_name}/{filename}")
continue continue
# Remove SP testcases from all ROT # Remove all SP testcases and BW320 testcases
if parsed["sp"]: if parsed["sp"] or parsed["bandwidth"] == "BW320":
#print(f"[scanner] skip (SP test): {parent_name}/{filename}") #print(f"[scanner] skip (SP test or BW320): {parent_name}/{filename}")
continue continue
# Remove P2P testcases with no ROT and BW320 #Remove P3P and COE testcases for CGW452
if parsed["interference"] == "P2P" and not parsed["rotation"] and parsed["bandwidth"] == "BW320": if parsed["interference"] in ["P3P", "COE"] and parsed["device"] == "CGW452":
#print(f"[scanner] skip (P2P no ROT BW320): {parent_name}/{filename}") #print(f"[scanner] skip ({parsed['interference']} CGW452): {parent_name}/{filename}")
continue
#Remove P3P testcases for CGW452
if parsed["interference"] == "P3P" and parsed["device"] == "CGW452":
#print(f"[scanner] skip (P3P CGW452): {parent_name}/{filename}")
continue continue
#print( f"[scanner] found: {parent_name}/{filename} -> test_id={parsed['test_id']}") #print( f"[scanner] found: {parent_name}/{filename} -> test_id={parsed['test_id']}")