From 74175058e0bf5ccf33803100614088b6b4c3ea76 Mon Sep 17 00:00:00 2001 From: Erik Norvell Date: Thu, 23 Oct 2025 20:03:49 +0200 Subject: [PATCH] Filter out rtpdump tests from cmds_enc in parse_commands.py --- scripts/parse_commands.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/parse_commands.py b/scripts/parse_commands.py index c5f4cd71fd..984374f66a 100644 --- a/scripts/parse_commands.py +++ b/scripts/parse_commands.py @@ -91,6 +91,9 @@ if __name__ == '__main__': # Filter out networkSimulator_g192 commands from cmds_rend cmds_rend = [cmd for cmd in cmds_rend if not "networkSimulator_g192" in cmd] + # Filter out rtpdump tests from cmds_enc. The rtpdump bitstreams differ between each run. + cmds_enc = [cmd for cmd in cmds_enc if not "rtpdump" in cmd] + with open(txt_file.replace('.','_enc.'),'w', newline='\n') as outfile: with open('scripts/enc_header.txt','r') as header: outfile.write(header.read()) -- GitLab