Commit 970ad0b8 authored by Jan Kiene's avatar Jan Kiene
Browse files

unify skip message

parent d0b7368c
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ def test_binary_file(test_info, hrtf_tag, out_fs):
        )
def test_multichannel_binaural_static(test_info, in_fmt, out_fmt, out_fs, hrtf_tag, bitrate):
    if bitrate == 32000:
        pytest.skip("Skip paramBin until differences are fixed")
        pytest.skip("Skipping ParamBin until binary and ROM contain same data")
    in_fs = 48
    option_list = ["-mc", in_fmt]
    in_file = FORMAT_TO_FILE_MC_WOEXT[in_fmt].format(in_fs)
@@ -78,7 +78,7 @@ def test_multichannel_binaural_headrotation(
    test_info, in_fmt, out_fmt, out_fs, trj_file, hrtf_tag, bitrate
):
    if bitrate == 32000:
        pytest.skip("Skip paramBin until differences are fixed")
        pytest.skip("Skipping ParamBin until binary and ROM contain same data")
    in_fs = 48
    option_list = ["-mc", in_fmt]
    in_file = FORMAT_TO_FILE_MC_WOEXT[in_fmt].format(in_fs)
@@ -106,7 +106,7 @@ def test_multichannel_binaural_headrotation(
@pytest.mark.parametrize("hrtf_tag", HRTF_TAGS)
def test_sba_binaural_static(test_info, bitrate, in_fmt, fs, out_fmt, hrtf_tag):
    if bitrate == 64000:
        pytest.skip("Skip paramBin until differences are fixed")
        pytest.skip("Skipping ParamBin until binary and ROM contain same data")
    option_list = ["-sba", in_fmt]
    in_file = FORMAT_TO_FILE_SBA_WOEXT[in_fmt].format(fs)

@@ -130,7 +130,7 @@ def test_sba_binaural_static(test_info, bitrate, in_fmt, fs, out_fmt, hrtf_tag):
@pytest.mark.parametrize("hrtf_tag", HRTF_TAGS)
def test_sba_binaural_headrotation(test_info, bitrate, in_fmt, fs, out_fmt, trj_file, hrtf_tag):
    if bitrate == 64000:
        pytest.skip("Skip paramBin until differences are fixed")
        pytest.skip("Skipping ParamBin until binary and ROM contain same data")
    option_list = ["-sba", in_fmt]
    in_file = FORMAT_TO_FILE_SBA_WOEXT[in_fmt].format(fs)

@@ -158,7 +158,7 @@ def test_sba_binaural_headrotation(test_info, bitrate, in_fmt, fs, out_fmt, trj_
def test_masa_binaural_static(test_info, in_tc, in_dir, fs, out_fmt, hrtf_tag):
    # TODO: remove once fixed
    if hrtf_tag == HRTF_TAG_DIFF_FROM_ROM:
        pytest.skip("Skipped due to bug in paramBin HRTF loading")
        pytest.skip("Skipping ParamBin until binary and ROM contain same data")
    bitrate = 256000
    metadata_file = str(
        TESTV_DIR.joinpath(FORMAT_TO_METADATA_FILES["MASA"].format(in_dir, in_tc, fs))
@@ -189,7 +189,7 @@ def test_masa_binaural_headrotation(
):
    # TODO: remove once fixed
    if hrtf_tag == HRTF_TAG_DIFF_FROM_ROM:
        pytest.skip("Skipped due to bug in paramBin HRTF loading")
        pytest.skip("Skipping ParamBin until binary and ROM contain same data")
    bitrate = 256000
    metadata_file = str(
        TESTV_DIR.joinpath(FORMAT_TO_METADATA_FILES["MASA"].format(in_dir, in_tc, fs))
+2 −2
Original line number Diff line number Diff line
@@ -179,7 +179,7 @@ def test_masa_binaural_static_with_binary_hrir(
    if out_fmt in ["BINAURAL_ROOM_IR", "BINAURAL_ROOM_REVERB"]:
        pytest.skip("Skipping binaural room outputs for MASA as unimplemented.")
    if hrtf_tag == HRTF_TAG_SAME_AS_ROM:
        pytest.skip("Skipping paramBin until fixed")
        pytest.skip("Skipping ParamBin until binary and ROM contain same data")

    compare_renderer_vs_renderer_with_binary_hrir(
        test_info,
@@ -201,7 +201,7 @@ def test_masa_binaural_headrotation_with_binary_hrir(
    if out_fmt in ["BINAURAL_ROOM_IR", "BINAURAL_ROOM_REVERB"]:
        pytest.skip("Skipping binaural room outputs for MASA as unimplemented.")
    if hrtf_tag == HRTF_TAG_SAME_AS_ROM:
        pytest.skip("Skipping paramBin until fixed")
        pytest.skip("Skipping ParamBin until binary and ROM contain same data")

    compare_renderer_vs_renderer_with_binary_hrir(
        test_info,