├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── azure-pipelines.yml ├── cocotb_test ├── Makefile.inc ├── __init__.py ├── cli.py ├── compat.py ├── plugin.py ├── run.py └── simulator.py ├── setup.py ├── tests ├── Makefile ├── dff.sv ├── dff.verilog.Makefile ├── dff.vhdl ├── dff_cocotb.py ├── dff_wrapper.vhdl ├── glbl.v ├── glbl_sink.v ├── includes │ └── inc.sv ├── invalid.v ├── invalid.vhdl ├── ius_defines.f ├── plus_args.sv ├── subfolder1 │ └── subfolder2 │ │ └── test_work_dir.py ├── test_cocotb_examples.py ├── test_cocotb_tests.py ├── test_compile_errors.py ├── test_dff.py ├── test_dff_custom_sim.py ├── test_long_log.py ├── test_multitop.py ├── test_named_lib.py ├── test_parallel.py ├── test_parameters.py ├── test_parameters.v ├── test_parameters.vhdl ├── test_plus_args.py ├── test_simulator_kwarg.py └── verilator.include-limits.patch └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /cocotb_test/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/cocotb_test/Makefile.inc -------------------------------------------------------------------------------- /cocotb_test/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.6" 2 | -------------------------------------------------------------------------------- /cocotb_test/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/cocotb_test/cli.py -------------------------------------------------------------------------------- /cocotb_test/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/cocotb_test/compat.py -------------------------------------------------------------------------------- /cocotb_test/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/cocotb_test/plugin.py -------------------------------------------------------------------------------- /cocotb_test/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/cocotb_test/run.py -------------------------------------------------------------------------------- /cocotb_test/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/cocotb_test/simulator.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/dff.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/dff.sv -------------------------------------------------------------------------------- /tests/dff.verilog.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/dff.verilog.Makefile -------------------------------------------------------------------------------- /tests/dff.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/dff.vhdl -------------------------------------------------------------------------------- /tests/dff_cocotb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/dff_cocotb.py -------------------------------------------------------------------------------- /tests/dff_wrapper.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/dff_wrapper.vhdl -------------------------------------------------------------------------------- /tests/glbl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/glbl.v -------------------------------------------------------------------------------- /tests/glbl_sink.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/glbl_sink.v -------------------------------------------------------------------------------- /tests/includes/inc.sv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/invalid.v: -------------------------------------------------------------------------------- 1 | Invalid Verilog file 2 | -------------------------------------------------------------------------------- /tests/invalid.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/invalid.vhdl -------------------------------------------------------------------------------- /tests/ius_defines.f: -------------------------------------------------------------------------------- 1 | -64 2 | dff.sv 3 | -top dff 4 | -------------------------------------------------------------------------------- /tests/plus_args.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/plus_args.sv -------------------------------------------------------------------------------- /tests/subfolder1/subfolder2/test_work_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/subfolder1/subfolder2/test_work_dir.py -------------------------------------------------------------------------------- /tests/test_cocotb_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_cocotb_examples.py -------------------------------------------------------------------------------- /tests/test_cocotb_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_cocotb_tests.py -------------------------------------------------------------------------------- /tests/test_compile_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_compile_errors.py -------------------------------------------------------------------------------- /tests/test_dff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_dff.py -------------------------------------------------------------------------------- /tests/test_dff_custom_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_dff_custom_sim.py -------------------------------------------------------------------------------- /tests/test_long_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_long_log.py -------------------------------------------------------------------------------- /tests/test_multitop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_multitop.py -------------------------------------------------------------------------------- /tests/test_named_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_named_lib.py -------------------------------------------------------------------------------- /tests/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_parallel.py -------------------------------------------------------------------------------- /tests/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_parameters.py -------------------------------------------------------------------------------- /tests/test_parameters.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_parameters.v -------------------------------------------------------------------------------- /tests/test_parameters.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_parameters.vhdl -------------------------------------------------------------------------------- /tests/test_plus_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_plus_args.py -------------------------------------------------------------------------------- /tests/test_simulator_kwarg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/test_simulator_kwarg.py -------------------------------------------------------------------------------- /tests/verilator.include-limits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tests/verilator.include-limits.patch -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themperek/cocotb-test/HEAD/tox.ini --------------------------------------------------------------------------------