Commit 1372391c authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'main' into...

Merge branch 'main' into 154-filter-output-of-sanitizer-tests-such-that-only-failing-conditions-are-stored
parents 92715bf3 d9695bf5
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -48,12 +48,12 @@ def get_modes(in_format: str) -> list:
    list_process = subprocess.run(cmd, capture_output=True)

    output = list_process.stdout.decode("utf8")
    mode_list = output.splitlines()

    # correction for multichannel modes to avoid selecting some mono modes...
    if in_format in MC_MODES:
        in_format = "MC_" + in_format + "_b"

    mode_list = [m for m in output.splitlines() if in_format in m]
        mode_list = [m for m in mode_list if in_format in m]

    return mode_list