Commit 426a7c50 authored by emerit's avatar emerit
Browse files

merge with main

parent cb62a421
Loading
Loading
Loading
Loading
+6 −12
Original line number Diff line number Diff line
__copyright__ = """
__copyright__ = \
"""
(C) 2022-2023 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
@@ -28,7 +29,8 @@ accordance with the laws of the Federal Republic of Germany excluding its confli
the United Nations Convention on Contracts on the International Sales of Goods.
"""

__doc__ = """
__doc__ = \
"""
Execute tests specified via a parameter file.
"""

@@ -408,17 +410,9 @@ def simulate(
    ref_out_file = f"{ref_out_dir}/{netsim_outfile}"

    if platform.system() == "Windows":
        netsim = [
            os.path.join(
                rootdir, "scripts", "tools", "Win32", "networkSimulator_g192.exe"
            )
        ]
        netsim = [os.path.join(rootdir, "scripts", "tools", "Win32", "networkSimulator_g192.exe")]
    elif platform.system() in ["Linux", "Darwin"]:
        netsim = [
            os.path.join(
                rootdir, "scripts", "tools", platform.system(), "networkSimulator_g192"
            )
        ]
        netsim = [os.path.join(rootdir, "scripts", "tools", platform.system(), "networkSimulator_g192")]
    else:
        assert False, f"networkSimulator_g192 not available for {platform.system()}"