Loading tests/test_param_file.py +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, Loading Loading @@ -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. """ Loading Loading @@ -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()}" Loading Loading
tests/test_param_file.py +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, Loading Loading @@ -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. """ Loading Loading @@ -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()}" Loading