From 45a9093914aad22d41fb56278d520d65f441d1a0 Mon Sep 17 00:00:00 2001 From: Erik Norvell Date: Thu, 19 Sep 2024 09:33:43 +0200 Subject: [PATCH 1/2] Update remove_unsupported_testcases.py --- ci/remove_unsupported_testcases.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/remove_unsupported_testcases.py b/ci/remove_unsupported_testcases.py index 2a1e9ed755..39ecf34d53 100644 --- a/ci/remove_unsupported_testcases.py +++ b/ci/remove_unsupported_testcases.py @@ -61,9 +61,13 @@ TESTCASES = [ "Multi-channel 5_1 at 512 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (CREND)", "Multi-channel 5_1 at 64 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (FastConv)", "Multi-channel 5_1 at 32 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (ParamBin)", + "MASA 1dir 1TC at 256 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, HR custom configuration", + "MASA 1dir 1 TC at 256kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out custom configuration", + "MASA 1dir 1TC at 256kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out custom configuration", ] + def remove_testcases(cfg: Path, testcases: list): """ Go through file line by line and copy all testcases except the given ones -- GitLab From 562982e0a5c987ec6926bf5563e3491c0a01cdea Mon Sep 17 00:00:00 2001 From: norvell Date: Thu, 19 Sep 2024 15:48:39 +0000 Subject: [PATCH 2/2] Update test_sba.py --- tests/codec_be_on_mr_nonselection/test_sba.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/codec_be_on_mr_nonselection/test_sba.py b/tests/codec_be_on_mr_nonselection/test_sba.py index 667169d4bc..98f55b7fe5 100644 --- a/tests/codec_be_on_mr_nonselection/test_sba.py +++ b/tests/codec_be_on_mr_nonselection/test_sba.py @@ -1051,8 +1051,8 @@ def sba_dec( ): dut_pkt_dir = f"{dut_base_path}/sba_bs/pkt" ref_pkt_dir = f"{reference_path}/sba_bs/pkt" - dut_out_dir = f"{dut_base_path}/sba_bs/syn" - ref_out_dir = f"{reference_path}/sba_bs/syn" + dut_out_dir = f"{dut_base_path}/sba_bs/raw" + ref_out_dir = f"{reference_path}/sba_bs/raw" check_and_makedir(dut_out_dir) check_and_makedir(ref_out_dir) -- GitLab