remove SP, P2P BW320, 452 P3P testcases

This commit is contained in:
2026-05-28 15:14:21 -04:00
parent 49310e6d59
commit c1aaf69fd0
6 changed files with 31 additions and 10 deletions
+2
View File
@@ -23,6 +23,7 @@ def parse_target_filename(filename, parent_dir):
band = next((s for s in segments if re.match(r"^\dGHZ$", s)), None)
channel = next((s for s in segments if re.match(r"^CH\d+$", s)), None)
bandwidth = next((s for s in segments if re.match(r"^BW\d+$", s)), None)
sp = next ((s for s in segments if re.match(r"^SP", s)), None)
last_segment = segments[-1] if segments else None
direction = last_segment if last_segment in DIRECTION_TYPES else None
@@ -45,6 +46,7 @@ def parse_target_filename(filename, parent_dir):
"direction": direction,
"rotation": rotation,
"throttled": throttled,
"sp": sp,
}