Commit 1f2f0c86 authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

do not set frame_alignment = "error" for OSBA formats

parent ceb3a31a
Loading
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -574,6 +574,14 @@ def validate_input_files(cfg: TestConfig):

    # always throw an error for ISM (and MASA) input
    if input_format.startswith("ISM") or input_format.startswith("MASA"):
        isosb = False
        isosba = (input_format in ['ISM1SBA1', 'ISM1SBA2', 'ISM1SBA3', 'ISM2SBA1', 'ISM2SBA2', 'ISM2SBA3', 
                                   'ISM3SBA1', 'ISM3SBA2', 'ISM3SBA3', 'ISM4SBA1', 'ISM4SBA2', 'ISM4SBA3', 
                                   'ISM1PLANARSBA1', 'ISM1PLANARSBA2', 'ISM1PLANARSBA3', 'ISM2PLANARSBA1', 
                                   'ISM2PLANARSBA2', 'ISM2PLANARSBA3', 'ISM3PLANARSBA1', 'ISM3PLANARSBA2',
                                   'ISM3PLANARSBA3', 'ISM4PLANARSBA1', 'ISM4PLANARSBA2', 'ISM4PLANARSBA3' ]
                  )
        if not isosba:
            frame_alignment = "error"
        
    if frame_alignment == "padding":