vunit

How to combine multiple VUnit run.py files into a single VUnit run?

倾然丶 夕夏残阳落幕 提交于 2021-02-07 14:51:20
问题 I have a directory and file structure like this: vunit_multi/ alfa/ run.py ... bravo/ run.py ... The VUnit run.py can run separately. Is there any nice way to combine these multiple separate VUnit runs into a single run with a combined status report? 回答1: Let's say your alfa and bravo run scripts looks something like this from os.path import join, dirname from vunit import VUnit prj = VUnit.from_argv() root = dirname(__file__) lib = prj.add_library("alfa_lib") lib.add_source_files(join(root,

How to combine multiple VUnit run.py files into a single VUnit run?

纵然是瞬间 提交于 2021-02-07 14:48:41
问题 I have a directory and file structure like this: vunit_multi/ alfa/ run.py ... bravo/ run.py ... The VUnit run.py can run separately. Is there any nice way to combine these multiple separate VUnit runs into a single run with a combined status report? 回答1: Let's say your alfa and bravo run scripts looks something like this from os.path import join, dirname from vunit import VUnit prj = VUnit.from_argv() root = dirname(__file__) lib = prj.add_library("alfa_lib") lib.add_source_files(join(root,

How to combine multiple VUnit run.py files into a single VUnit run?

生来就可爱ヽ(ⅴ<●) 提交于 2021-02-07 14:48:40
问题 I have a directory and file structure like this: vunit_multi/ alfa/ run.py ... bravo/ run.py ... The VUnit run.py can run separately. Is there any nice way to combine these multiple separate VUnit runs into a single run with a combined status report? 回答1: Let's say your alfa and bravo run scripts looks something like this from os.path import join, dirname from vunit import VUnit prj = VUnit.from_argv() root = dirname(__file__) lib = prj.add_library("alfa_lib") lib.add_source_files(join(root,

How to combine multiple VUnit run.py files into a single VUnit run?

不想你离开。 提交于 2021-02-07 14:47:34
问题 I have a directory and file structure like this: vunit_multi/ alfa/ run.py ... bravo/ run.py ... The VUnit run.py can run separately. Is there any nice way to combine these multiple separate VUnit runs into a single run with a combined status report? 回答1: Let's say your alfa and bravo run scripts looks something like this from os.path import join, dirname from vunit import VUnit prj = VUnit.from_argv() root = dirname(__file__) lib = prj.add_library("alfa_lib") lib.add_source_files(join(root,