From 6bdbb04fa836a95e29bb856764485d9ec58a009a Mon Sep 17 00:00:00 2001 From: Lekcyjna <309016@uwr.edu.pl> Date: Mon, 1 Jan 2024 17:45:32 +0100 Subject: [PATCH 1/8] Move pytest specific changes to separate PR. --- pytest.ini | 8 ++++++++ requirements-dev.txt | 1 + 2 files changed, 9 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 000000000..5178b4112 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,8 @@ +[pytest] +minversion = 7.2.2 +testpaths = + tests +norecursedirs = '*.egg', '.*', 'build', 'dist', 'venv', '__traces__', '__pycache__' +filterwarnings = + ignore:cannot collect test class 'TestbenchIO':pytest.PytestCollectionWarning + ignore:.*amaranth.hdl.rec.*0.6:DeprecationWarning diff --git a/requirements-dev.txt b/requirements-dev.txt index 35c93666f..56e54366e 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -16,4 +16,5 @@ sphinxcontrib-mermaid==0.8.1 cocotb==1.7.2 cocotb-bus==0.2.1 pytest==7.2.2 +pytest-xdist==3.5.0 pyelftools==0.29 From 80da715b68f7400fc2c9b5e1dc812317edd90841 Mon Sep 17 00:00:00 2001 From: Lekcyjna <309016@uwr.edu.pl> Date: Sun, 28 Jan 2024 18:39:46 +0100 Subject: [PATCH 2/8] WIP script. --- pytest.ini | 1 + requirements-dev.txt | 2 +- scripts/coreblocks_pytest_plugin.py | 76 + scripts/run_tests.py | 141 +- test/conftest.py | 9 + test/regression/cocotb/test_entrypoint.py | 3 +- test/regression/conftest.py | 38 + test/regression/pytestdebug.log | 35684 ++++++++++++++++ .../{test.py => test_regression.py} | 44 +- 9 files changed, 35878 insertions(+), 120 deletions(-) create mode 100644 scripts/coreblocks_pytest_plugin.py create mode 100644 test/conftest.py create mode 100644 test/regression/conftest.py create mode 100644 test/regression/pytestdebug.log rename test/regression/{test.py => test_regression.py} (54%) diff --git a/pytest.ini b/pytest.ini index 5178b4112..a5cf2ffa0 100644 --- a/pytest.ini +++ b/pytest.ini @@ -6,3 +6,4 @@ norecursedirs = '*.egg', '.*', 'build', 'dist', 'venv', '__traces__', '__pycache filterwarnings = ignore:cannot collect test class 'TestbenchIO':pytest.PytestCollectionWarning ignore:.*amaranth.hdl.rec.*0.6:DeprecationWarning + ignore:No files were found in testpaths:pytest.PytestConfigWarning: diff --git a/requirements-dev.txt b/requirements-dev.txt index 3c9396a1b..7199e0e5b 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -15,7 +15,7 @@ sphinx-rtd-theme==1.0.0 sphinxcontrib-mermaid==0.8.1 cocotb==1.7.2 cocotb-bus==0.2.1 -pytest==7.2.2 +pytest==8.0.0 pytest-xdist==3.5.0 pyelftools==0.29 dataclasses-json==0.6.3 diff --git a/scripts/coreblocks_pytest_plugin.py b/scripts/coreblocks_pytest_plugin.py new file mode 100644 index 000000000..126c83563 --- /dev/null +++ b/scripts/coreblocks_pytest_plugin.py @@ -0,0 +1,76 @@ +""" +This module is a compatibility layer between run_tests.py and pytest to provide backward compatible syntax in run_tests.py. +It is implemented as pytest plugin, which provides following pytest hooks: + - pytest_collection_finish + - pytest_runtestloop + - pytest_addoption + - pytest_collection_modifyitems +""" +import re +from typing import Optional +import pytest + +def generate_unittestname(item : pytest.Item) -> str: + full_name=".".join(map(lambda s: s[:-3] if s[-3:] == ".py" else s, map(lambda x: x.name, item.listchain()))) + return full_name + + +def generate_test_cases_list(session : pytest.Session) -> list[str]: + tests_list = [] + for item in session.items: + full_name=generate_unittestname(item) + tests_list.append(full_name) + return tests_list + +def pytest_collection_finish(session : pytest.Session): + if session.config.getoption("coreblocks_list"): + full_names = generate_test_cases_list(session) + for i in full_names: + print(i) + +@pytest.hookimpl(tryfirst=True) +def pytest_runtestloop(session: pytest.Session) -> Optional[bool]: + if session.config.getoption("coreblocks_list"): + return True + return None + + +def pytest_addoption(parser : pytest.Parser): + group = parser.getgroup("coreblocks") + group.addoption("--coreblocks-list", action="store_true", help = "List all tests in flatten format.") + group.addoption("--coreblocks-test-name", action="store", type=str, help="Name or regexp in flatten format pointing to test to run.") + group.addoption("--coreblocks-test-count", action="store", type=int, help="Number of tests to starts. If less than number of all selected tests, then starts only subset of them.") + +def deselect_based_on_flatten_name(items : list[pytest.Item], config : pytest.Config) -> None: + coreblocks_test_name = config.getoption("coreblocks_test_name") + if not isinstance(coreblocks_test_name, str): + return + + deselected = [] + remaining = [] + regexp = re.compile(coreblocks_test_name) + for item in items: + full_name = generate_unittestname(item) + match = regexp.search(full_name) + if match is None: + deselected.append(item) + else: + remaining.append(item) + if deselected: + config.hook.pytest_deselected(items=deselected) + items[:] = remaining + +def deselect_based_on_count(items : list[pytest.Item], config : pytest.Config) -> None: + coreblocks_test_count = config.getoption("coreblocks_test_count") + if not isinstance(coreblocks_test_count, int): + return + + deselected = items[coreblocks_test_count:] + remaining = items[:coreblocks_test_count] + if deselected: + config.hook.pytest_deselected(items=deselected) + items[:] = remaining + +def pytest_collection_modifyitems(items: list[pytest.Item], config : pytest.Config) -> None: + deselect_based_on_flatten_name(items, config) + deselect_based_on_count(items, config) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 264daa707..08823c441 100755 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 +import pytest import unittest import asyncio import argparse @@ -13,91 +14,15 @@ topdir = Path(__file__).parent.parent sys.path.insert(0, str(topdir)) -import test.regression.test # noqa: E402 +import test.regression.conftest # noqa: E402 +import test.regression.test_regression # noqa: E402 from test.regression.pysim import PySimulation # noqa: E402 REGRESSION_TESTS_PREFIX = "test.regression." +pytest_plugins = "coreblocks_pytest_plugin" - -def cd_to_topdir(): - os.chdir(str(topdir)) - - -def load_unit_tests(): - suite = unittest.TestLoader().discover(".") - - tests = {} - - def flatten(suite): - if hasattr(suite, "__iter__"): - for x in suite: - flatten(x) - else: - tests[suite.id()] = suite - - flatten(suite) - - return tests - - -def load_regression_tests() -> list[str]: - all_tests = test.regression.test.get_all_test_names() - if len(all_tests) == 0: - res = subprocess.run(["make", "-C", "test/external/riscv-tests"]) - if res.returncode != 0: - print("Couldn't build regression tests") - sys.exit(1) - - exclude = {"rv32ui-ma_data", "rv32ui-fence_i"} - - return list(all_tests - exclude) - - -def run_regressions_with_cocotb(tests: list[str], traces: bool) -> bool: - cpu_count = len(os.sched_getaffinity(0)) - arglist = ["make", "-C", "test/regression/cocotb", "-f", "test.Makefile", f"-j{cpu_count}"] - - test_cases = ",".join(tests) - arglist += [f"TESTCASE={test_cases}"] - - if traces: - arglist += ["TRACES=1"] - - res = subprocess.run(arglist) - - return res.returncode == 0 - - -def run_regressions_with_pysim(tests: list[str], traces: bool, verbose: bool) -> bool: - suite = unittest.TestSuite() - - def _gen_test(test_name: str): - def test_fn(): - traces_file = None - if traces: - traces_file = REGRESSION_TESTS_PREFIX + test_name - asyncio.run(test.regression.test.run_test(PySimulation(verbose, traces_file=traces_file), test_name)) - - test_fn.__name__ = test_name - test_fn.__qualname__ = test_name - - return test_fn - - for test_name in tests: - suite.addTest(unittest.FunctionTestCase(_gen_test(test_name))) - - runner = unittest.TextTestRunner(verbosity=(2 if verbose else 1)) - result = runner.run(suite) - - return result.wasSuccessful() - - -def run_regression_tests(tests: list[str], backend: Literal["pysim", "cocotb"], traces: bool, verbose: bool) -> bool: - if backend == "cocotb": - return run_regressions_with_cocotb(tests, traces) - elif backend == "pysim": - return run_regressions_with_pysim(tests, traces, verbose) - return False +def cd_to_testdir(): + os.chdir(str(topdir / "test")) def main(): @@ -111,48 +36,42 @@ def main(): "-b", "--backend", default="cocotb", choices=["cocotb", "pysim"], help="Simulation backend for regression tests" ) parser.add_argument("-c", "--count", type=int, help="Start `c` first tests which match regexp") + parser.add_argument("-j", "--jobs", type=int, default = len(os.sched_getaffinity(0)), help="Start `j` jobs in parallel. Default: all") parser.add_argument("test_name", nargs="?") args = parser.parse_args() - unit_tests = load_unit_tests() - regression_tests = load_regression_tests() if args.all else [] - - if args.list: - for name in list(unit_tests.keys()): - print(name) - for name in regression_tests: - print(REGRESSION_TESTS_PREFIX + name) - return + pytest_arguments=["--max-worker-restart=1"] if args.trace: os.environ["__COREBLOCKS_DUMP_TRACES"] = "1" + pytest_arguments.append("--coreblocks-traces") if args.profile: os.environ["__TRANSACTRON_PROFILE"] = "1" if args.test_name: - pattern = re.compile(args.test_name) - unit_tests = {name: test for name, test in unit_tests.items() if pattern.search(name)} - regression_tests = [test for test in regression_tests if pattern.search(REGRESSION_TESTS_PREFIX + test)] - - if not unit_tests and not regression_tests: - print(f"Could not find test matching '{args.test_name}'") - sys.exit(1) - - unit_tests_success = True - if unit_tests: - runner = unittest.TextTestRunner(verbosity=(2 if args.verbose else 1)) - result = runner.run(unittest.TestSuite(list(unit_tests.values())[: args.count])) - unit_tests_success = result.wasSuccessful() - - regression_tests_success = True - if regression_tests: - regression_tests_success = run_regression_tests(regression_tests, args.backend, args.trace, args.verbose) - - sys.exit(not (unit_tests_success and regression_tests_success)) - + pytest_arguments += [f"--coreblocks-test-name={args.test_name}"] + if args.count: + pytest_arguments += ["--coreblocks-test-count", str(args.count)] + if args.list: + pytest_arguments.append("--coreblocks-list") + if args.jobs and not args.list: + # To list tests we have to run only one job. Otherwise there is no output (probably captured by worker server). + pytest_arguments += ["-n", str(args.jobs)] + if args.all: + pytest_arguments.append("--coreblocks-regression") + if args.verbose: + pytest_arguments.append("--verbose") + if args.backend: + pytest_arguments += [f"--coreblocks-backend={args.backend}"] + + print(pytest_arguments) + ret = pytest.main(pytest_arguments, ["coreblocks_pytest_plugin"]) + + exit(ret) if __name__ == "__main__": - cd_to_topdir() + #cd_to_testdir() + #pytest.main(["--coreblocks-list"], ["coreblocks_pytest_plugin"]) main() diff --git a/test/conftest.py b/test/conftest.py new file mode 100644 index 000000000..61b8ecaa5 --- /dev/null +++ b/test/conftest.py @@ -0,0 +1,9 @@ +import pytest + +def pytest_addoption(parser : pytest.Parser): + group = parser.getgroup("coreblocks") + group.addoption("--coreblocks-regression", action="store_true", help = "Run also regression tests.") + group.addoption( + "--coreblocks-backend", default="cocotb", choices=["cocotb", "pysim"], help="Simulation backend for regression tests" + ) + group.addoption( "--coreblocks-traces", action="store_true", help = "Generate traces from regression tests") diff --git a/test/regression/cocotb/test_entrypoint.py b/test/regression/cocotb/test_entrypoint.py index d5e8fb7a9..9fed7b23a 100644 --- a/test/regression/cocotb/test_entrypoint.py +++ b/test/regression/cocotb/test_entrypoint.py @@ -6,7 +6,8 @@ sys.path.insert(0, str(top_dir)) from test.regression.cocotb import CocotbSimulation, generate_tests # noqa: E402 -from test.regression.test import run_test, get_all_test_names # noqa: E402 +from test.regression.test_regression import run_test +from test.regression.conftest import get_all_test_names # noqa: E402 async def do_test(dut, test_name): diff --git a/test/regression/conftest.py b/test/regression/conftest.py new file mode 100644 index 000000000..6b41daf0a --- /dev/null +++ b/test/regression/conftest.py @@ -0,0 +1,38 @@ +from glob import glob +from pathlib import Path +import pytest +import subprocess +import sys + +test_dir = Path(__file__).parent.parent +riscv_tests_dir = test_dir.joinpath("external/riscv-tests") + +def get_all_test_names(): + return sorted([name[5:] for name in glob("test-*", root_dir=riscv_tests_dir)]) + +def load_regression_tests() -> list[str]: + all_tests = set(get_all_test_names()) + if len(all_tests) == 0: + res = subprocess.run(["make", "-C", "test/external/riscv-tests"]) + if res.returncode != 0: + print("Couldn't build regression tests") + sys.exit(1) + all_tests = set(get_all_test_names()) + + exclude = {"rv32ui-ma_data", "rv32ui-fence_i"} + + return sorted(list(all_tests - exclude)) + + +def pytest_generate_tests(metafunc : pytest.Metafunc): + if not metafunc.config.getoption("coreblocks_regression"): + # Add regression to skiped tests + metafunc.parametrize(["test_name","backend", "traces", "verbose"], []) + return + + all_tests = load_regression_tests() #The list has to be always in the samo order (e.g. sorted) to allow for parallel testing + traces = metafunc.config.getoption("coreblocks_traces") + backend = metafunc.config.getoption("coreblocks_backend") + verbose = bool(metafunc.config.getoption("verbose")) + if {"test_name","backend", "traces", "verbose"}.issubset(metafunc.fixturenames): + metafunc.parametrize(["test_name","backend", "traces", "verbose"], [(test_name, backend, traces, verbose) for test_name in all_tests]) diff --git a/test/regression/pytestdebug.log b/test/regression/pytestdebug.log new file mode 100644 index 000000000..3c9a6635a --- /dev/null +++ b/test/regression/pytestdebug.log @@ -0,0 +1,35684 @@ +versions pytest-7.2.2, python-3.11.6.final.0 +cwd=/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression +args=('-v', '-v', '-v', '--verbosity=5', '--debug', '-n', '12') + + pytest_plugin_registered [hook] + plugin: <__channelexec__.WorkerInteractor object at 0x7c56b81f0c50> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_cmdline_main [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_configure [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + pytest_plugin_registered [hook] + plugin: <_pytest.cacheprovider.LFPlugin object at 0x7c56b813e4d0> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.cacheprovider.NFPlugin object at 0x7c56b813fb90> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + early skip of rewriting module: faulthandler [assertion] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + early skip of rewriting module: pdb [assertion] + early skip of rewriting module: cmd [assertion] + early skip of rewriting module: code [assertion] + early skip of rewriting module: codeop [assertion] + pytest_plugin_registered [hook] + plugin: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.config.Config object at 0x7c56b82e6e50> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: > err=> in_=> _state='suspended' _in_suspended=False> _capture_fixture=None> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <__channelexec__.WorkerInteractor object at 0x7c56b81f0c50> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: testsfailed=0 testscollected=0> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.cacheprovider.LFPlugin object at 0x7c56b813e4d0> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.cacheprovider.NFPlugin object at 0x7c56b813fb90> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.terminal.TerminalReporter object at 0x7c56b81315d0> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.logging.LoggingPlugin object at 0x7c56b80dd750> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + finish pytest_configure --> [] [hook] + pytest_sessionstart [hook] + session: testsfailed=0 testscollected=0> + pytest_plugin_registered [hook] + plugin: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.config.Config object at 0x7c56b82e6e50> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: > err=> in_=> _state='suspended' _in_suspended=False> _capture_fixture=None> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <__channelexec__.WorkerInteractor object at 0x7c56b81f0c50> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: testsfailed=0 testscollected=0> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.cacheprovider.LFPlugin object at 0x7c56b813e4d0> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.cacheprovider.NFPlugin object at 0x7c56b813fb90> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.terminal.TerminalReporter object at 0x7c56b81315d0> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.logging.LoggingPlugin object at 0x7c56b80dd750> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_plugin_registered [hook] + plugin: <_pytest.fixtures.FixtureManager object at 0x7c56b814c390> + manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> + finish pytest_plugin_registered --> [] [hook] + pytest_report_header [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + start_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression + startdir: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression + early skip of rewriting module: email.parser [assertion] + early skip of rewriting module: email.feedparser [assertion] + finish pytest_report_header --> [['rootdir: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks, configfile: pytest.ini', 'plugins: xdist-3.5.0, anyio-4.2.0'], 'cachedir: .pytest_cache', ['using: pytest-7.2.2', 'setuptools registered plugins:', ' pytest-xdist-3.5.0 at /home/kuba/.local/lib/python3.11/site-packages/xdist/plugin.py', ' pytest-xdist-3.5.0 at /home/kuba/.local/lib/python3.11/site-packages/xdist/looponfail.py', ' anyio-4.2.0 at /usr/lib/python3.11/site-packages/anyio/pytest_plugin.py']] [hook] + finish pytest_sessionstart --> [] [hook] + pytest_collection [hook] + session: testsfailed=0 testscollected=0> + perform_collect testsfailed=0 testscollected=0> ['/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression'] [collection] + pytest_collectstart [hook] + collector: testsfailed=0 testscollected=0> + finish pytest_collectstart --> [] [hook] + pytest_make_collect_report [hook] + collector: testsfailed=0 testscollected=0> + processing argument (PosixPath('/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression'), []) [collection] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + pytest_pycollect_makemodule [hook] + parent: testsfailed=0 testscollected=0> + module_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + finish pytest_pycollect_makemodule --> [hook] + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py + pytest_pycollect_makemodule [hook] + parent: testsfailed=0 testscollected=0> + module_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py + finish pytest_pycollect_makemodule --> [hook] + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + pytest_pycollect_makemodule [hook] + parent: testsfailed=0 testscollected=0> + module_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py + finish pytest_pycollect_makemodule --> [hook] + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/slre.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/slre.json + finish pytest_ignore_collect --> None [hook] + pytest_co finish pytest_xdist_newgateway --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x702e7088edd0> + finish pytest_plugin_registered --> [] [hook] + pytest_configure_node [hook] + node: + finish pytest_configure_node --> [] [hook] + pytest_xdist_getremotemodule [hook] + finish pytest_xdist_getremotemodule --> [hook] + started node [config:nodemanager] + pytest_xdist_newgateway [hook] + gateway: + finish pytest_xdist_newgateway --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x702e7088edd0> + finish pytest_plugin_registered --> [] [hook] + pytest_configure_node [hook] + node: + finish pytest_configure_node --> [] [hook] + pytest_xdist_getremotemodule [hook] + finish pytest_xdist_getremotemodule --> [hook] + started node [config:nodemanager] + pytest_xdist_newgateway [hook] + gateway: + finish pytest_xdist_newgateway --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x702e7088edd0> + finish pytest_plugin_registered --> [] [hook] + pytest_configure_node [hook] + node: + finish pytest_configure_node --> [] [hook] + pytest_xdist_getremotemodule [hook] + finish pytest_xdist_getremotemodule --> [hook] + started node [config:nodemanager] + pytest_xdist_newgateway [hook] + gateway: + finish pytest_xdist_newgateway --> [] [hook] + pytest_plugin_registered [hook] + plugin: + manager: <_pytest.config.PytestPluginManager object at 0x702e7088edd0> + finish pytest_plugin_registered --> [] [hook] + pytest_configure_node [hook] + node: + finish pytest_configure_node --> [] [hook] + pytest_xdist_getremotemodule [hook] + finish pytest_xdist_getremotemodule --> [hook] + started node [config:nodemanager] + finish pytest_sessionstart --> [] [hook] + pytest_collection [hook] + session: testsfailed=0 testscollected=0> + finish pytest_collection --> True [hook] + pytest_runtestloop [hook] + session: testsfailed=0 testscollected=0> + pytest_xdist_make_scheduler [hook] + config: <_pytest.config.Config object at 0x702e705ade10> + log: Producer('dsession', enabled=pytestdebug.log) + finish pytest_xdist_make_scheduler --> [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_testnodeready [hook] + node: + finish pytest_testnodeready --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_xdist_node_collection_finished [hook] + node: + ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]'] + finish pytest_xdist_node_collection_finished --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + pytest_testnodedown [hook] + node: + error: None + finish pytest_testnodedown --> [] [hook] + finish pytest_runtestloop --> True [hook] + pytest_sessionfinish [hook] + session: testsfailed=11 testscollected=49> + exitstatus: 1 + pytest_terminal_summary [hook] + terminalreporter: <_pytest.terminal.TerminalReporter object at 0x702e6fc1a750> + exitstatus: 1 + config: <_pytest.config.Config object at 0x702e705ade10> + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + pytest_report_teststatus [hook] + report: + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] + finish pytest_terminal_summary --> [] [hook] + finish pytest_sessionfinish --> [] [hook] + pytest_unconfigure [hook] + config: <_pytest.config.Config object at 0x702e705ade10> + finish pytest_unconfigure --> [] [hook] +st/regression/cocotb/build/benchmark/Vtop__Syms__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: testsfailed=0 testscollected=0> + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o + finish pytest_collect_file --> [] [hook] + finish pytest_make_collect_report --> [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + genitems [collection] + pytest_collectstart [hook] + collector: + finish pytest_collectstart --> [] [hook] + pytest_make_collect_report [hook] + collector: + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark.py + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb.py + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/common.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/common.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/common.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/common.py + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/conftest.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/conftest.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/conftest.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/conftest.py + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/memory.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/memory.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/memory.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/memory.py + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pysim.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pysim.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pysim.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pysim.py + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pytestdebug.log + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pytestdebug.log + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pytestdebug.log + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pytestdebug.log + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/signature.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/signature.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/signature.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/signature.py + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py + finish pytest_ignore_collect --> None [hook] + pytest_collect_file [hook] + parent: + file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py + pytest_pycollect_makemodule [hook] + parent: + module_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py + finish pytest_pycollect_makemodule --> [hook] + finish pytest_collect_file --> [] [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/slre.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/slre.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/statemate.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/statemate.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/ud.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/ud.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd-lot-of-scalars.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd-lot-of-scalars.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd-mem.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd-mem.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vmem.json + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vmem.json + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/benchmark.Makefile + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/benchmark.Makefile + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/benchmark_entrypoint.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/benchmark_entrypoint.py + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/results.xml + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/results.xml + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/signature.Makefile + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/signature.Makefile + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/signature_entrypoint.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/signature_entrypoint.py + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test.Makefile + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test.Makefile + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test_entrypoint.py + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test_entrypoint.py + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.h + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.mk + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ALL.a + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ALL.a + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.h + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.h + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d + finish pytest_ignore_collect --> None [hook] + pytest_ignore_collect [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o + path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o + finish pytest_ignore_collect --> None [hook] + finish pytest_make_collect_report --> [hook] + genitems [collection] + pytest_collectstart [hook] + collector: + finish pytest_collectstart --> [] [hook] + pytest_make_collect_report [hook] + collector: + find_module called for: test.regression.test_regression [assertion] + matched test file '/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py' [assertion] + found cached rewritten pyc for /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py [assertion] + early skip of rewriting module: test.regression.memory [assertion] + early skip of rewriting module: elftools [assertion] + early skip of rewriting module: elftools.elf [assertion] + early skip of rewriting module: elftools.elf.constants [assertion] + early skip of rewriting module: elftools.elf.elffile [assertion] + early skip of rewriting module: resource [assertion] + early skip of rewriting module: elftools.common [assertion] + early skip of rewriting module: elftools.common.py3compat [assertion] + early skip of rewriting module: elftools.common.exceptions [assertion] + early skip of rewriting module: elftools.common.utils [assertion] + early skip of rewriting module: elftools.construct [assertion] + early skip of rewriting module: elftools.construct.core [assertion] + early skip of rewriting module: elftools.construct.lib [assertion] + early skip of rewriting module: elftools.construct.lib.binary [assertion] + early skip of rewriting module: elftools.construct.lib.py3compat [assertion] + early skip of rewriting module: elftools.construct.lib.bitstream [assertion] + early skip of rewriting module: elftools.construct.lib.container [assertion] + early skip of rewriting module: elftools.construct.lib.hex [assertion] + early skip of rewriting module: elftools.construct.adapters [assertion] + early skip of rewriting module: elftools.construct.macros [assertion] + early skip of rewriting module: elftools.construct.debug [assertion] + early skip of rewriting module: elftools.elf.structs [assertion] + early skip of rewriting module: elftools.common.construct_utils [assertion] + early skip of rewriting module: elftools.elf.enums [assertion] + early skip of rewriting module: elftools.elf.sections [assertion] + early skip of rewriting module: elftools.elf.notes [assertion] + early skip of rewriting module: elftools.elf.dynamic [assertion] + early skip of rewriting module: elftools.elf.hash [assertion] + early skip of rewriting module: elftools.elf.segments [assertion] + early skip of rewriting module: elftools.elf.relocation [assertion] + early skip of rewriting module: elftools.elf.gnuversions [assertion] + early skip of rewriting module: elftools.dwarf [assertion] + early skip of rewriting module: elftools.dwarf.dwarfinfo [assertion] + early skip of rewriting module: elftools.dwarf.structs [assertion] + early skip of rewriting module: logging.config [assertion] + early skip of rewriting module: logging.handlers [assertion] + early skip of rewriting module: pickle [assertion] + early skip of rewriting module: _compat_pickle [assertion] + early skip of rewriting module: _pickle [assertion] + early skip of rewriting module: org [assertion] + early skip of rewriting module: socketserver [assertion] + early skip of rewriting module: elftools.dwarf.enums [assertion] + early skip of rewriting module: elftools.dwarf.compileunit [assertion] + early skip of rewriting module: elftools.dwarf.die [assertion] + early skip of rewriting module: elftools.dwarf.dwarf_util [assertion] + early skip of rewriting module: elftools.dwarf.abbrevtable [assertion] + early skip of rewriting module: elftools.dwarf.lineprogram [assertion] + early skip of rewriting module: elftools.dwarf.constants [assertion] + early skip of rewriting module: elftools.dwarf.callframe [assertion] + early skip of rewriting module: elftools.dwarf.locationlists [assertion] + early skip of rewriting module: elftools.dwarf.ranges [assertion] + early skip of rewriting module: elftools.dwarf.aranges [assertion] + early skip of rewriting module: elftools.dwarf.namelut [assertion] + early skip of rewriting module: elftools.ehabi [assertion] + early skip of rewriting module: elftools.ehabi.ehabiinfo [assertion] + early skip of rewriting module: elftools.ehabi.decoder [assertion] + early skip of rewriting module: elftools.ehabi.constants [assertion] + early skip of rewriting module: elftools.ehabi.structs [assertion] + early skip of rewriting module: coreblocks [assertion] + early skip of rewriting module: coreblocks.params [assertion] + early skip of rewriting module: coreblocks.params.isa [assertion] + early skip of rewriting module: amaranth [assertion] + early skip of rewriting module: amaranth.hdl [assertion] + early skip of rewriting module: amaranth.hdl.ast [assertion] + early skip of rewriting module: amaranth.hdl._repr [assertion] + early skip of rewriting module: amaranth.tracer [assertion] + early skip of rewriting module: amaranth._utils [assertion] + early skip of rewriting module: amaranth.utils [assertion] + early skip of rewriting module: amaranth._unused [assertion] + early skip of rewriting module: amaranth.hdl.dsl [assertion] + early skip of rewriting module: amaranth.hdl.ir [assertion] + early skip of rewriting module: amaranth.hdl.cd [assertion] + early skip of rewriting module: amaranth.hdl.xfrm [assertion] + early skip of rewriting module: amaranth.hdl.mem [assertion] + early skip of rewriting module: amaranth.hdl.rec [assertion] + early skip of rewriting module: amaranth.hdl._rec [assertion] + early skip of rewriting module: amaranth.lib [assertion] + early skip of rewriting module: amaranth.lib.wiring [assertion] + early skip of rewriting module: amaranth.lib.enum [assertion] + early skip of rewriting module: coreblocks.params.optypes [assertion] + early skip of rewriting module: coreblocks.params.genparams [assertion] + early skip of rewriting module: coreblocks.params.icache_params [assertion] + early skip of rewriting module: coreblocks.params.fu_params [assertion] + early skip of rewriting module: coreblocks.utils [assertion] + early skip of rewriting module: coreblocks.utils.protocols [assertion] + early skip of rewriting module: transactron [assertion] + early skip of rewriting module: transactron.core [assertion] + early skip of rewriting module: graphlib [assertion] + early skip of rewriting module: typing_extensions [assertion] + early skip of rewriting module: transactron.graph [assertion] + early skip of rewriting module: transactron.tracing [assertion] + early skip of rewriting module: transactron.utils [assertion] + early skip of rewriting module: transactron.utils.data_repr [assertion] + early skip of rewriting module: transactron.utils._typing [assertion] + early skip of rewriting module: amaranth.lib.data [assertion] + early skip of rewriting module: statistics [assertion] + early skip of rewriting module: fractions [assertion] + early skip of rewriting module: _statistics [assertion] + early skip of rewriting module: transactron.utils.debug_signals [assertion] + early skip of rewriting module: transactron.utils.assign [assertion] + early skip of rewriting module: transactron.utils.amaranth_ext [assertion] + early skip of rewriting module: transactron.utils.amaranth_ext.functions [assertion] + early skip of rewriting module: transactron.utils.amaranth_ext.elaboratables [assertion] + early skip of rewriting module: transactron.utils.transactron_helpers [assertion] + early skip of rewriting module: transactron.utils.dependencies [assertion] + early skip of rewriting module: transactron.utils.depcache [assertion] + early skip of rewriting module: coreblocks.peripherals [assertion] + early skip of rewriting module: coreblocks.peripherals.wishbone [assertion] + early skip of rewriting module: transactron.lib [assertion] + early skip of rewriting module: transactron.lib.fifo [assertion] + early skip of rewriting module: transactron.lib.connectors [assertion] + early skip of rewriting module: amaranth.lib.fifo [assertion] + early skip of rewriting module: amaranth.asserts [assertion] + early skip of rewriting module: amaranth.lib.coding [assertion] + early skip of rewriting module: amaranth.lib.cdc [assertion] + early skip of rewriting module: transactron.lib.buttons [assertion] + early skip of rewriting module: transactron.lib.adapters [assertion] + early skip of rewriting module: transactron.lib.transformers [assertion] + early skip of rewriting module: transactron.lib.simultaneous [assertion] + early skip of rewriting module: transactron.lib.reqres [assertion] + early skip of rewriting module: transactron.lib.storage [assertion] + early skip of rewriting module: coreblocks.params.layouts [assertion] + early skip of rewriting module: coreblocks.params.keys [assertion] + early skip of rewriting module: transactron.lib.dependencies [assertion] + early skip of rewriting module: coreblocks.params.instr [assertion] + early skip of rewriting module: coreblocks.params.configurations [assertion] + early skip of rewriting module: coreblocks.lsu [assertion] + early skip of rewriting module: coreblocks.lsu.pma [assertion] + early skip of rewriting module: coreblocks.stages [assertion] + early skip of rewriting module: coreblocks.stages.rs_func_block [assertion] + early skip of rewriting module: coreblocks.structs_common [assertion] + early skip of rewriting module: coreblocks.structs_common.rs [assertion] + early skip of rewriting module: coreblocks.scheduler [assertion] + early skip of rewriting module: coreblocks.scheduler.wakeup_select [assertion] + early skip of rewriting module: coreblocks.fu [assertion] + early skip of rewriting module: coreblocks.fu.alu [assertion] + early skip of rewriting module: coreblocks.fu.fu_decoder [assertion] + early skip of rewriting module: coreblocks.fu.shift_unit [assertion] + early skip of rewriting module: coreblocks.fu.jumpbranch [assertion] + early skip of rewriting module: coreblocks.fu.mul_unit [assertion] + early skip of rewriting module: coreblocks.fu.unsigned_multiplication [assertion] + early skip of rewriting module: coreblocks.fu.unsigned_multiplication.fast_recursive [assertion] + early skip of rewriting module: coreblocks.fu.unsigned_multiplication.common [assertion] + early skip of rewriting module: coreblocks.fu.unsigned_multiplication.sequence [assertion] + early skip of rewriting module: coreblocks.fu.unsigned_multiplication.shift [assertion] + early skip of rewriting module: coreblocks.fu.div_unit [assertion] + early skip of rewriting module: coreblocks.fu.division [assertion] + early skip of rewriting module: coreblocks.fu.division.long_division [assertion] + early skip of rewriting module: coreblocks.fu.division.common [assertion] + early skip of rewriting module: coreblocks.fu.zbc [assertion] + early skip of rewriting module: coreblocks.fu.zbs [assertion] + early skip of rewriting module: coreblocks.fu.exception [assertion] + early skip of rewriting module: coreblocks.fu.priv [assertion] + early skip of rewriting module: coreblocks.lsu.dummyLsu [assertion] + early skip of rewriting module: coreblocks.structs_common.csr [assertion] + early skip of rewriting module: test.regression.common [assertion] + early skip of rewriting module: test.regression.pysim [assertion] + early skip of rewriting module: amaranth.sim [assertion] + early skip of rewriting module: amaranth.sim.core [assertion] + early skip of rewriting module: amaranth.sim._base [assertion] + early skip of rewriting module: test.common [assertion] + early skip of rewriting module: test.common.functions [assertion] + early skip of rewriting module: test.common.infrastructure [assertion] + early skip of rewriting module: test.common.testbenchio [assertion] + early skip of rewriting module: test.common.profiler [assertion] + early skip of rewriting module: transactron.profiler [assertion] + early skip of rewriting module: dataclasses_json [assertion] + early skip of rewriting module: dataclasses_json.api [assertion] + early skip of rewriting module: dataclasses_json.cfg [assertion] + early skip of rewriting module: marshmallow [assertion] + early skip of rewriting module: marshmallow.decorators [assertion] + early skip of rewriting module: marshmallow.exceptions [assertion] + early skip of rewriting module: marshmallow.schema [assertion] + early skip of rewriting module: marshmallow.base [assertion] + early skip of rewriting module: marshmallow.fields [assertion] + early skip of rewriting module: marshmallow.validate [assertion] + early skip of rewriting module: marshmallow.types [assertion] + early skip of rewriting module: marshmallow.utils [assertion] + early skip of rewriting module: marshmallow.warnings [assertion] + early skip of rewriting module: marshmallow.class_registry [assertion] + early skip of rewriting module: marshmallow.error_store [assertion] + early skip of rewriting module: marshmallow.orderedset [assertion] + early skip of rewriting module: dataclasses_json.stringcase [assertion] + early skip of rewriting module: dataclasses_json.undefined [assertion] + early skip of rewriting module: dataclasses_json.utils [assertion] + early skip of rewriting module: dataclasses_json.core [assertion] + early skip of rewriting module: typing_inspect [assertion] + early skip of rewriting module: mypy_extensions [assertion] + early skip of rewriting module: dataclasses_json.mm [assertion] + early skip of rewriting module: dataclasses_json.__version__ [assertion] + early skip of rewriting module: test.gtkw_extension [assertion] + early skip of rewriting module: amaranth.sim.pysim [assertion] + early skip of rewriting module: vcd [assertion] + early skip of rewriting module: vcd.reader [assertion] + early skip of rewriting module: vcd.common [assertion] + early skip of rewriting module: vcd.writer [assertion] + early skip of rewriting module: vcd.gtkw [assertion] + early skip of rewriting module: amaranth.sim._pyrtl [assertion] + early skip of rewriting module: amaranth.sim._pycoro [assertion] + early skip of rewriting module: amaranth.sim._pyclock [assertion] + early skip of rewriting module: test.common.sugar [assertion] + early skip of rewriting module: test.peripherals [assertion] + find_module called for: test.peripherals.test_wishbone [assertion] + matched test file '/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/peripherals/test_wishbone.py' [assertion] + found cached rewritten pyc for /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/peripherals/test_wishbone.py [assertion] + early skip of rewriting module: coreblocks.core [assertion] + early skip of rewriting module: coreblocks.stages.func_blocks_unifier [assertion] + early skip of rewriting module: coreblocks.structs_common.instr_counter [assertion] + early skip of rewriting module: coreblocks.structs_common.interrupt_controller [assertion] + early skip of rewriting module: coreblocks.frontend [assertion] + early skip of rewriting module: coreblocks.frontend.decode_stage [assertion] + early skip of rewriting module: coreblocks.frontend.instr_decoder [assertion] + early skip of rewriting module: coreblocks.frontend.instr_description [assertion] + early skip of rewriting module: coreblocks.structs_common.rat [assertion] + early skip of rewriting module: coreblocks.structs_common.rob [assertion] + early skip of rewriting module: coreblocks.structs_common.rf [assertion] + early skip of rewriting module: coreblocks.structs_common.csr_generic [assertion] + early skip of rewriting module: coreblocks.structs_common.exception [assertion] + early skip of rewriting module: coreblocks.scheduler.scheduler [assertion] + early skip of rewriting module: coreblocks.stages.backend [assertion] + early skip of rewriting module: coreblocks.stages.retirement [assertion] + early skip of rewriting module: coreblocks.frontend.icache [assertion] + early skip of rewriting module: coreblocks.frontend.fetch [assertion] + early skip of rewriting module: coreblocks.frontend.rvc [assertion] + early skip of rewriting module: asyncio [assertion] + early skip of rewriting module: asyncio.base_events [assertion] + early skip of rewriting module: asyncio.constants [assertion] + early skip of rewriting module: asyncio.coroutines [assertion] + early skip of rewriting module: asyncio.events [assertion] + early skip of rewriting module: asyncio.format_helpers [assertion] + early skip of rewriting module: _asyncio [assertion] + early skip of rewriting module: asyncio.base_futures [assertion] + early skip of rewriting module: asyncio.exceptions [assertion] + early skip of rewriting module: asyncio.base_tasks [assertion] + early skip of rewriting module: asyncio.futures [assertion] + early skip of rewriting module: asyncio.protocols [assertion] + early skip of rewriting module: asyncio.sslproto [assertion] + early skip of rewriting module: asyncio.transports [assertion] + early skip of rewriting module: asyncio.log [assertion] + early skip of rewriting module: asyncio.staggered [assertion] + early skip of rewriting module: asyncio.locks [assertion] + early skip of rewriting module: asyncio.mixins [assertion] + early skip of rewriting module: asyncio.tasks [assertion] + early skip of rewriting module: asyncio.trsock [assertion] + early skip of rewriting module: asyncio.runners [assertion] + early skip of rewriting module: asyncio.queues [assertion] + early skip of rewriting module: asyncio.streams [assertion] + early skip of rewriting module: asyncio.subprocess [assertion] + early skip of rewriting module: asyncio.taskgroups [assertion] + early skip of rewriting module: asyncio.timeouts [assertion] + early skip of rewriting module: asyncio.threads [assertion] + early skip of rewriting module: asyncio.unix_events [assertion] + early skip of rewriting module: asyncio.base_subprocess [assertion] + early skip of rewriting module: asyncio.selector_events [assertion] + pytest_pycollect_makeitem [hook] + collector: + name: @py_builtins + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: @pytest_ar + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: ABC + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: abstractmethod + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: Callable + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: Enum + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: IntFlag + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: auto + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: Optional + obj: typing.Optional + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: TypeVar + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: dataclass + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: replace + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: P_FLAGS + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: ELFFile + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: Segment + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: CoreConfiguration + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: align_to_power_of_two + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: align_down_to_power_of_two + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: all + obj: ['ReplyStatus', 'ReadRequest', 'ReadReply', 'WriteRequest', 'WriteReply', 'MemoryModel', 'RAMSegment', 'CoreMemoryModel'] + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: ReplyStatus + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: SegmentFlags + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: ReadRequest + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: ReadReply + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: WriteRequest + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: WriteReply + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: MemorySegment + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: RandomAccessMemory + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: TReq + obj: ~TReq + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: TRep + obj: ~TRep + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: CoreMemoryModel + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: load_segment + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: load_segments_from_elf + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: SimulationBackend + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: riscv_tests_dir + obj: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/external/riscv-tests + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: exclude_write_protection + obj: ['rv32uc-rvc'] + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: MMIO + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: run_test + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: REGRESSION_TESTS_PREFIX + obj: test.regression. + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: PySimulation + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: asyncio + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: Literal + obj: typing.Literal + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: os + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: subprocess + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: run_regressions_with_cocotb + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: regression_body_with_pysim + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: test_entrypoint + obj: + pytest_generate_tests [hook] + metafunc: <_pytest.python.Metafunc object at 0x7c56b3768dd0> + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-and + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + early skip of rewriting module: encodings.unicode_escape [assertion] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32um-remu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-bltu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-lb + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-lhu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-simple + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32um-div + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-andi + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-srli + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-blt + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-slli + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-fence_i + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-beq + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32um-mul + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-slt + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-xori + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-ma_data + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-bge + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-sub + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-bgeu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-sltiu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32um-rem + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32um-divu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-sh + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-srl + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-lw + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-sra + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-auipc + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-lh + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-jalr + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-sw + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-sll + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-sltu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-lbu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-or + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32um-mulhu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32um-mulh + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-jal + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32uc-rvc + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-ori + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-sb + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-bne + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-slti + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-xor + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32um-mulhsu + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-lui + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-add + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-addi + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: rv32ui-srai + argname: test_name + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: pysim + argname: backend + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: traces + finish pytest_make_parametrize_id --> None [hook] + pytest_make_parametrize_id [hook] + config: <_pytest.config.Config object at 0x7c56b82e6e50> + val: False + argname: verbose + finish pytest_make_parametrize_id --> None [hook] + finish pytest_generate_tests --> [] [hook] + finish pytest_pycollect_makeitem --> [, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] [hook] + finish pytest_make_collect_report --> [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + genitems [collection] + pytest_itemcollected [hook] + item: + finish pytest_itemcollected --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + genitems [collection] + pytest_collectstart [hook] + collector: + finish pytest_collectstart --> [] [hook] + pytest_make_collect_report [hook] + collector: + find_module called for: test_entrypoint [assertion] + matched test file '/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test_entrypoint.py' [assertion] + found cached rewritten pyc for /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test_entrypoint.py [assertion] + early skip of rewriting module: cocotb [assertion] + early skip of rewriting module: cocotb.handle [assertion] + early skip of rewriting module: ctypes [assertion] + early skip of rewriting module: _ctypes [assertion] + early skip of rewriting module: ctypes._endian [assertion] + early skip of rewriting module: cocotb.simulator [assertion] + early skip of rewriting module: cocotb.binary [assertion] + early skip of rewriting module: cocotb.log [assertion] + early skip of rewriting module: cocotb.ANSI [assertion] + early skip of rewriting module: cocotb.utils [assertion] + early skip of rewriting module: cocotb.types [assertion] + early skip of rewriting module: cocotb.types.array [assertion] + early skip of rewriting module: cocotb.types.range [assertion] + early skip of rewriting module: cocotb.types.logic [assertion] + early skip of rewriting module: cocotb.types.logic_array [assertion] + early skip of rewriting module: cocotb._deprecation [assertion] + find_module called for: cocotb.regression [assertion] + early skip of rewriting module: cocotb.decorators [assertion] + early skip of rewriting module: cocotb.triggers [assertion] + early skip of rewriting module: cocotb.outcomes [assertion] + early skip of rewriting module: cocotb.result [assertion] + early skip of rewriting module: cocotb.xunit_reporter [assertion] + early skip of rewriting module: cocotb.scheduler [assertion] + early skip of rewriting module: cocotb._py_compat [assertion] + early skip of rewriting module: cocotb._version [assertion] + early skip of rewriting module: test.regression.cocotb [assertion] + early skip of rewriting module: cocotb.clock [assertion] + early skip of rewriting module: cocotb_bus [assertion] + early skip of rewriting module: cocotb_bus._version [assertion] + early skip of rewriting module: cocotb_bus.bus [assertion] + pytest_pycollect_makeitem [hook] + collector: + name: @py_builtins + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: @pytest_ar + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: sys + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: cocotb + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: Path + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: top_dir + obj: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: CocotbSimulation + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: generate_tests + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: run_test + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: get_all_test_names + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: do_test + obj: + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-and + obj: rv32ui-and + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32um-remu + obj: rv32um-remu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-bltu + obj: rv32ui-bltu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-lb + obj: rv32ui-lb + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-lhu + obj: rv32ui-lhu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-simple + obj: rv32ui-simple + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32um-div + obj: rv32um-div + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-andi + obj: rv32ui-andi + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-srli + obj: rv32ui-srli + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-blt + obj: rv32ui-blt + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-slli + obj: rv32ui-slli + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-fence_i + obj: rv32ui-fence_i + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-beq + obj: rv32ui-beq + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32um-mul + obj: rv32um-mul + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-slt + obj: rv32ui-slt + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-xori + obj: rv32ui-xori + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-ma_data + obj: rv32ui-ma_data + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-bge + obj: rv32ui-bge + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-sub + obj: rv32ui-sub + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-bgeu + obj: rv32ui-bgeu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-sltiu + obj: rv32ui-sltiu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32um-rem + obj: rv32um-rem + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32um-divu + obj: rv32um-divu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-sh + obj: rv32ui-sh + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-srl + obj: rv32ui-srl + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-lw + obj: rv32ui-lw + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-sra + obj: rv32ui-sra + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-auipc + obj: rv32ui-auipc + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-lh + obj: rv32ui-lh + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-jalr + obj: rv32ui-jalr + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-sw + obj: rv32ui-sw + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-sll + obj: rv32ui-sll + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-sltu + obj: rv32ui-sltu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-lbu + obj: rv32ui-lbu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-or + obj: rv32ui-or + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32um-mulhu + obj: rv32um-mulhu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32um-mulh + obj: rv32um-mulh + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-jal + obj: rv32ui-jal + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32uc-rvc + obj: rv32uc-rvc + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-ori + obj: rv32ui-ori + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-sb + obj: rv32ui-sb + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-bne + obj: rv32ui-bne + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-slti + obj: rv32ui-slti + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-xor + obj: rv32ui-xor + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32um-mulhsu + obj: rv32um-mulhsu + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-lui + obj: rv32ui-lui + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-add + obj: rv32ui-add + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-addi + obj: rv32ui-addi + finish pytest_pycollect_makeitem --> None [hook] + pytest_pycollect_makeitem [hook] + collector: + name: rv32ui-srai + obj: rv32ui-srai + finish pytest_pycollect_makeitem --> None [hook] + finish pytest_make_collect_report --> [hook] + pytest_collectreport [hook] + report: + finish pytest_collectreport --> [] [hook] + pytest_collection_modifyitems [hook] + session: testsfailed=0 testscollected=0> + config: <_pytest.config.Config object at 0x7c56b82e6e50> + items: [, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] + finish pytest_collection_modifyitems --> [] [hook] + pytest_collection_finish [hook] + session: testsfailed=0 testscollected=0> + pytest_report_collectionfinish [hook] + config: <_pytest.config.Config object at 0x7ee57bf2ea50> + items: [, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] + start_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression + startdir: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression + finish pytest_report_collectionfinish --> [] [hook] + finish pytest_collection_finish --> [] [hook] + finish pytest_collection --> None [hook] + pytest_runtestloop [hook] + session: testsfailed=0 testscollected=49> + finish pytest_runtestloop --> True [hook] + pytest_sessionfinish [hook] + session: + exitstatus: 0 + pytest_terminal_summary [hook] + terminalreporter: <_pytest.terminal.TerminalReporter object at 0x7ee57bd89290> + exitstatus: 0 + config: <_pytest.config.Config object at 0x7ee57bf2ea50> + finish pytest_terminal_summary --> [] [hook] + finish pytest_sessionfinish --> [] [hook] + pytest_unconfigure [hook] + config: <_pytest.config.Config object at 0x7ee57bf2ea50> + finish pytest_unconfigure --> [] [hook] diff --git a/test/regression/test.py b/test/regression/test_regression.py similarity index 54% rename from test/regression/test.py rename to test/regression/test_regression.py index cbe8067cd..acd21bc54 100644 --- a/test/regression/test.py +++ b/test/regression/test_regression.py @@ -1,11 +1,15 @@ -from glob import glob -from pathlib import Path - from .memory import * from .common import SimulationBackend +from .conftest import riscv_tests_dir +from test.regression.pysim import PySimulation +import asyncio +from typing import Literal +import os +import subprocess +import sys + +REGRESSION_TESTS_PREFIX = "test.regression." -test_dir = Path(__file__).parent.parent -riscv_tests_dir = test_dir.joinpath("external/riscv-tests") # disable write protection for specific tests with writes to .text section exclude_write_protection = ["rv32uc-rvc"] @@ -26,8 +30,6 @@ def write(self, req: WriteRequest) -> WriteReply: return WriteReply() -def get_all_test_names(): - return {name[5:] for name in glob("test-*", root_dir=riscv_tests_dir)} async def run_test(sim_backend: SimulationBackend, test_name: str): @@ -49,3 +51,31 @@ async def run_test(sim_backend: SimulationBackend, test_name: str): if mmio.failed_test: raise RuntimeError("Failing test: %d" % mmio.failed_test) + + +def regression_body_with_cocotb(test_name: str, traces: bool): + print(os.getcwd(), file=sys.stderr) + arglist = ["make", "-C", "cocotb", "-f", "test.Makefile"] + arglist += [f"TESTCASE={test_name}"] + + if traces: + arglist += ["TRACES=1"] + + res = subprocess.run(arglist) + + assert res.returncode == 0 + + +def regression_body_with_pysim(test_name: str, traces: bool, verbose: bool): + traces_file = None + if traces: + traces_file = REGRESSION_TESTS_PREFIX + test_name + asyncio.run(run_test(PySimulation(verbose, traces_file=traces_file), test_name)) + + +def test_entrypoint(test_name: str, backend: Literal["pysim", "cocotb"], traces: bool, verbose: bool): + if backend == "cocotb": + regression_body_with_cocotb(test_name, traces) + elif backend == "pysim": + regression_body_with_pysim(test_name, traces, verbose) + From cb2f815227f8a1f5f7ccae5953e386412ed9b478 Mon Sep 17 00:00:00 2001 From: Lekcyjna <309016@uwr.edu.pl> Date: Sun, 28 Jan 2024 18:57:30 +0100 Subject: [PATCH 3/8] More stable version. --- scripts/coreblocks_pytest_plugin.py | 76 ------------------- scripts/run_tests.py | 28 ++----- test/conftest.py | 91 ++++++++++++++++++++++- test/regression/cocotb/test_entrypoint.py | 2 +- test/regression/conftest.py | 17 +++-- test/regression/test_regression.py | 3 - 6 files changed, 108 insertions(+), 109 deletions(-) delete mode 100644 scripts/coreblocks_pytest_plugin.py diff --git a/scripts/coreblocks_pytest_plugin.py b/scripts/coreblocks_pytest_plugin.py deleted file mode 100644 index 126c83563..000000000 --- a/scripts/coreblocks_pytest_plugin.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -This module is a compatibility layer between run_tests.py and pytest to provide backward compatible syntax in run_tests.py. -It is implemented as pytest plugin, which provides following pytest hooks: - - pytest_collection_finish - - pytest_runtestloop - - pytest_addoption - - pytest_collection_modifyitems -""" -import re -from typing import Optional -import pytest - -def generate_unittestname(item : pytest.Item) -> str: - full_name=".".join(map(lambda s: s[:-3] if s[-3:] == ".py" else s, map(lambda x: x.name, item.listchain()))) - return full_name - - -def generate_test_cases_list(session : pytest.Session) -> list[str]: - tests_list = [] - for item in session.items: - full_name=generate_unittestname(item) - tests_list.append(full_name) - return tests_list - -def pytest_collection_finish(session : pytest.Session): - if session.config.getoption("coreblocks_list"): - full_names = generate_test_cases_list(session) - for i in full_names: - print(i) - -@pytest.hookimpl(tryfirst=True) -def pytest_runtestloop(session: pytest.Session) -> Optional[bool]: - if session.config.getoption("coreblocks_list"): - return True - return None - - -def pytest_addoption(parser : pytest.Parser): - group = parser.getgroup("coreblocks") - group.addoption("--coreblocks-list", action="store_true", help = "List all tests in flatten format.") - group.addoption("--coreblocks-test-name", action="store", type=str, help="Name or regexp in flatten format pointing to test to run.") - group.addoption("--coreblocks-test-count", action="store", type=int, help="Number of tests to starts. If less than number of all selected tests, then starts only subset of them.") - -def deselect_based_on_flatten_name(items : list[pytest.Item], config : pytest.Config) -> None: - coreblocks_test_name = config.getoption("coreblocks_test_name") - if not isinstance(coreblocks_test_name, str): - return - - deselected = [] - remaining = [] - regexp = re.compile(coreblocks_test_name) - for item in items: - full_name = generate_unittestname(item) - match = regexp.search(full_name) - if match is None: - deselected.append(item) - else: - remaining.append(item) - if deselected: - config.hook.pytest_deselected(items=deselected) - items[:] = remaining - -def deselect_based_on_count(items : list[pytest.Item], config : pytest.Config) -> None: - coreblocks_test_count = config.getoption("coreblocks_test_count") - if not isinstance(coreblocks_test_count, int): - return - - deselected = items[coreblocks_test_count:] - remaining = items[:coreblocks_test_count] - if deselected: - config.hook.pytest_deselected(items=deselected) - items[:] = remaining - -def pytest_collection_modifyitems(items: list[pytest.Item], config : pytest.Config) -> None: - deselect_based_on_flatten_name(items, config) - deselect_based_on_count(items, config) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 08823c441..c0a9f8ef6 100755 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -1,25 +1,12 @@ #!/usr/bin/env python3 import pytest -import unittest -import asyncio import argparse -import re -import sys import os -import subprocess -from typing import Literal from pathlib import Path topdir = Path(__file__).parent.parent -sys.path.insert(0, str(topdir)) -import test.regression.conftest # noqa: E402 -import test.regression.test_regression # noqa: E402 -from test.regression.pysim import PySimulation # noqa: E402 - -REGRESSION_TESTS_PREFIX = "test.regression." -pytest_plugins = "coreblocks_pytest_plugin" def cd_to_testdir(): os.chdir(str(topdir / "test")) @@ -36,12 +23,14 @@ def main(): "-b", "--backend", default="cocotb", choices=["cocotb", "pysim"], help="Simulation backend for regression tests" ) parser.add_argument("-c", "--count", type=int, help="Start `c` first tests which match regexp") - parser.add_argument("-j", "--jobs", type=int, default = len(os.sched_getaffinity(0)), help="Start `j` jobs in parallel. Default: all") + parser.add_argument( + "-j", "--jobs", type=int, default=len(os.sched_getaffinity(0)), help="Start `j` jobs in parallel. Default: all" + ) parser.add_argument("test_name", nargs="?") args = parser.parse_args() - pytest_arguments=["--max-worker-restart=1"] + pytest_arguments = ["--max-worker-restart=1"] if args.trace: os.environ["__COREBLOCKS_DUMP_TRACES"] = "1" @@ -57,7 +46,7 @@ def main(): if args.list: pytest_arguments.append("--coreblocks-list") if args.jobs and not args.list: - # To list tests we have to run only one job. Otherwise there is no output (probably captured by worker server). + # To list tests we can not use xdist, because it doesn't support forwarding of stdout from workers. pytest_arguments += ["-n", str(args.jobs)] if args.all: pytest_arguments.append("--coreblocks-regression") @@ -67,11 +56,10 @@ def main(): pytest_arguments += [f"--coreblocks-backend={args.backend}"] print(pytest_arguments) - ret = pytest.main(pytest_arguments, ["coreblocks_pytest_plugin"]) - + ret = pytest.main(pytest_arguments, []) + exit(ret) + if __name__ == "__main__": - #cd_to_testdir() - #pytest.main(["--coreblocks-list"], ["coreblocks_pytest_plugin"]) main() diff --git a/test/conftest.py b/test/conftest.py index 61b8ecaa5..35f09bfd3 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -1,9 +1,92 @@ +import re +from typing import Optional import pytest -def pytest_addoption(parser : pytest.Parser): + +def pytest_addoption(parser: pytest.Parser): group = parser.getgroup("coreblocks") - group.addoption("--coreblocks-regression", action="store_true", help = "Run also regression tests.") + group.addoption("--coreblocks-regression", action="store_true", help="Run also regression tests.") + group.addoption( + "--coreblocks-backend", + default="cocotb", + choices=["cocotb", "pysim"], + help="Simulation backend for regression tests", + ) + group.addoption("--coreblocks-traces", action="store_true", help="Generate traces from regression tests") + group.addoption("--coreblocks-list", action="store_true", help="List all tests in flatten format.") group.addoption( - "--coreblocks-backend", default="cocotb", choices=["cocotb", "pysim"], help="Simulation backend for regression tests" + "--coreblocks-test-name", + action="store", + type=str, + help="Name or regexp in flatten format pointing to test to run.", ) - group.addoption( "--coreblocks-traces", action="store_true", help = "Generate traces from regression tests") + group.addoption( + "--coreblocks-test-count", + action="store", + type=int, + help="Number of tests to starts. If less than number of all selected tests, then starts only subset of them.", + ) + + +def generate_unittestname(item: pytest.Item) -> str: + full_name = ".".join(map(lambda s: s[:-3] if s[-3:] == ".py" else s, map(lambda x: x.name, item.listchain()))) + return full_name + + +def generate_test_cases_list(session: pytest.Session) -> list[str]: + tests_list = [] + for item in session.items: + full_name = generate_unittestname(item) + tests_list.append(full_name) + return tests_list + + +def pytest_collection_finish(session: pytest.Session): + if session.config.getoption("coreblocks_list"): + full_names = generate_test_cases_list(session) + for i in full_names: + print(i) + + +@pytest.hookimpl(tryfirst=True) +def pytest_runtestloop(session: pytest.Session) -> Optional[bool]: + if session.config.getoption("coreblocks_list"): + return True + return None + + +def deselect_based_on_flatten_name(items: list[pytest.Item], config: pytest.Config) -> None: + coreblocks_test_name = config.getoption("coreblocks_test_name") + if not isinstance(coreblocks_test_name, str): + return + + deselected = [] + remaining = [] + regexp = re.compile(coreblocks_test_name) + for item in items: + full_name = generate_unittestname(item) + match = regexp.search(full_name) + if match is None: + deselected.append(item) + else: + remaining.append(item) + if deselected: + config.hook.pytest_deselected(items=deselected) + items[:] = remaining + + +def deselect_based_on_count(items: list[pytest.Item], config: pytest.Config) -> None: + coreblocks_test_count = config.getoption("coreblocks_test_count") + if not isinstance(coreblocks_test_count, int): + return + + deselected = items[coreblocks_test_count:] + remaining = items[:coreblocks_test_count] + if deselected: + config.hook.pytest_deselected(items=deselected) + items[:] = remaining + + +def pytest_collection_modifyitems(items: list[pytest.Item], config: pytest.Config) -> None: + deselect_based_on_flatten_name(items, config) + deselect_based_on_count(items, config) diff --git a/test/regression/cocotb/test_entrypoint.py b/test/regression/cocotb/test_entrypoint.py index 9fed7b23a..707344dbe 100644 --- a/test/regression/cocotb/test_entrypoint.py +++ b/test/regression/cocotb/test_entrypoint.py @@ -6,7 +6,7 @@ sys.path.insert(0, str(top_dir)) from test.regression.cocotb import CocotbSimulation, generate_tests # noqa: E402 -from test.regression.test_regression import run_test +from test.regression.test_regression import run_test # noqa: E402 from test.regression.conftest import get_all_test_names # noqa: E402 diff --git a/test/regression/conftest.py b/test/regression/conftest.py index 6b41daf0a..ca2dc41e0 100644 --- a/test/regression/conftest.py +++ b/test/regression/conftest.py @@ -7,9 +7,11 @@ test_dir = Path(__file__).parent.parent riscv_tests_dir = test_dir.joinpath("external/riscv-tests") + def get_all_test_names(): return sorted([name[5:] for name in glob("test-*", root_dir=riscv_tests_dir)]) + def load_regression_tests() -> list[str]: all_tests = set(get_all_test_names()) if len(all_tests) == 0: @@ -24,15 +26,20 @@ def load_regression_tests() -> list[str]: return sorted(list(all_tests - exclude)) -def pytest_generate_tests(metafunc : pytest.Metafunc): +def pytest_generate_tests(metafunc: pytest.Metafunc): if not metafunc.config.getoption("coreblocks_regression"): # Add regression to skiped tests - metafunc.parametrize(["test_name","backend", "traces", "verbose"], []) + metafunc.parametrize(["test_name", "backend", "traces", "verbose"], []) return - all_tests = load_regression_tests() #The list has to be always in the samo order (e.g. sorted) to allow for parallel testing + all_tests = ( + load_regression_tests() + ) # The list has to be always in the samo order (e.g. sorted) to allow for parallel testing traces = metafunc.config.getoption("coreblocks_traces") backend = metafunc.config.getoption("coreblocks_backend") verbose = bool(metafunc.config.getoption("verbose")) - if {"test_name","backend", "traces", "verbose"}.issubset(metafunc.fixturenames): - metafunc.parametrize(["test_name","backend", "traces", "verbose"], [(test_name, backend, traces, verbose) for test_name in all_tests]) + if {"test_name", "backend", "traces", "verbose"}.issubset(metafunc.fixturenames): + metafunc.parametrize( + ["test_name", "backend", "traces", "verbose"], + [(test_name, backend, traces, verbose) for test_name in all_tests], + ) diff --git a/test/regression/test_regression.py b/test/regression/test_regression.py index acd21bc54..f1e748ed4 100644 --- a/test/regression/test_regression.py +++ b/test/regression/test_regression.py @@ -30,8 +30,6 @@ def write(self, req: WriteRequest) -> WriteReply: return WriteReply() - - async def run_test(sim_backend: SimulationBackend, test_name: str): mmio = MMIO(lambda: sim_backend.stop()) @@ -78,4 +76,3 @@ def test_entrypoint(test_name: str, backend: Literal["pysim", "cocotb"], traces: regression_body_with_cocotb(test_name, traces) elif backend == "pysim": regression_body_with_pysim(test_name, traces, verbose) - From 8847ff2ab452ee7467d5c7d6df1177ebeda3e048 Mon Sep 17 00:00:00 2001 From: Lekcyjna <309016@uwr.edu.pl> Date: Mon, 12 Feb 2024 14:54:11 +0100 Subject: [PATCH 4/8] Remove unneeded logs. Fix (hopefully) cocotb run. --- .gitignore | 1 + scripts/run_tests.py | 7 +- test/regression/pytestdebug.log | 35684 --------------------------- test/regression/test_regression.py | 7 +- 4 files changed, 9 insertions(+), 35690 deletions(-) delete mode 100644 test/regression/pytestdebug.log diff --git a/.gitignore b/.gitignore index a27638d1d..e9bef0b0e 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ venv.bak/ # Tests outputs test/__traces__ test/__profiles__/*.json +pytestdebug.log # cocotb build /test/regression/cocotb/build diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 391951515..d75cb1e53 100755 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -8,8 +8,9 @@ topdir = Path(__file__).parent.parent -def cd_to_testdir(): - os.chdir(str(topdir / "test")) +def cd_to_topdir(): + os.chdir(topdir) + def main(): parser = argparse.ArgumentParser() @@ -54,11 +55,11 @@ def main(): if args.backend: pytest_arguments += [f"--coreblocks-backend={args.backend}"] - print(pytest_arguments) ret = pytest.main(pytest_arguments, []) exit(ret) if __name__ == "__main__": + cd_to_topdir() main() diff --git a/test/regression/pytestdebug.log b/test/regression/pytestdebug.log deleted file mode 100644 index 3c9a6635a..000000000 --- a/test/regression/pytestdebug.log +++ /dev/null @@ -1,35684 +0,0 @@ -versions pytest-7.2.2, python-3.11.6.final.0 -cwd=/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression -args=('-v', '-v', '-v', '--verbosity=5', '--debug', '-n', '12') - - pytest_plugin_registered [hook] - plugin: <__channelexec__.WorkerInteractor object at 0x7c56b81f0c50> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_cmdline_main [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_configure [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - pytest_plugin_registered [hook] - plugin: <_pytest.cacheprovider.LFPlugin object at 0x7c56b813e4d0> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.cacheprovider.NFPlugin object at 0x7c56b813fb90> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - early skip of rewriting module: faulthandler [assertion] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - early skip of rewriting module: pdb [assertion] - early skip of rewriting module: cmd [assertion] - early skip of rewriting module: code [assertion] - early skip of rewriting module: codeop [assertion] - pytest_plugin_registered [hook] - plugin: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.config.Config object at 0x7c56b82e6e50> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: > err=> in_=> _state='suspended' _in_suspended=False> _capture_fixture=None> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <__channelexec__.WorkerInteractor object at 0x7c56b81f0c50> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: testsfailed=0 testscollected=0> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.cacheprovider.LFPlugin object at 0x7c56b813e4d0> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.cacheprovider.NFPlugin object at 0x7c56b813fb90> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.terminal.TerminalReporter object at 0x7c56b81315d0> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.logging.LoggingPlugin object at 0x7c56b80dd750> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - finish pytest_configure --> [] [hook] - pytest_sessionstart [hook] - session: testsfailed=0 testscollected=0> - pytest_plugin_registered [hook] - plugin: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.config.Config object at 0x7c56b82e6e50> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: > err=> in_=> _state='suspended' _in_suspended=False> _capture_fixture=None> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <__channelexec__.WorkerInteractor object at 0x7c56b81f0c50> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: testsfailed=0 testscollected=0> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.cacheprovider.LFPlugin object at 0x7c56b813e4d0> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.cacheprovider.NFPlugin object at 0x7c56b813fb90> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.terminal.TerminalReporter object at 0x7c56b81315d0> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.logging.LoggingPlugin object at 0x7c56b80dd750> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_plugin_registered [hook] - plugin: <_pytest.fixtures.FixtureManager object at 0x7c56b814c390> - manager: <_pytest.config.PytestPluginManager object at 0x7c56b8989a50> - finish pytest_plugin_registered --> [] [hook] - pytest_report_header [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - start_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression - startdir: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression - early skip of rewriting module: email.parser [assertion] - early skip of rewriting module: email.feedparser [assertion] - finish pytest_report_header --> [['rootdir: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks, configfile: pytest.ini', 'plugins: xdist-3.5.0, anyio-4.2.0'], 'cachedir: .pytest_cache', ['using: pytest-7.2.2', 'setuptools registered plugins:', ' pytest-xdist-3.5.0 at /home/kuba/.local/lib/python3.11/site-packages/xdist/plugin.py', ' pytest-xdist-3.5.0 at /home/kuba/.local/lib/python3.11/site-packages/xdist/looponfail.py', ' anyio-4.2.0 at /usr/lib/python3.11/site-packages/anyio/pytest_plugin.py']] [hook] - finish pytest_sessionstart --> [] [hook] - pytest_collection [hook] - session: testsfailed=0 testscollected=0> - perform_collect testsfailed=0 testscollected=0> ['/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression'] [collection] - pytest_collectstart [hook] - collector: testsfailed=0 testscollected=0> - finish pytest_collectstart --> [] [hook] - pytest_make_collect_report [hook] - collector: testsfailed=0 testscollected=0> - processing argument (PosixPath('/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression'), []) [collection] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - pytest_pycollect_makemodule [hook] - parent: testsfailed=0 testscollected=0> - module_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - finish pytest_pycollect_makemodule --> [hook] - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py - pytest_pycollect_makemodule [hook] - parent: testsfailed=0 testscollected=0> - module_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/__init__.py - finish pytest_pycollect_makemodule --> [hook] - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - pytest_pycollect_makemodule [hook] - parent: testsfailed=0 testscollected=0> - module_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/__init__.py - finish pytest_pycollect_makemodule --> [hook] - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/slre.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/slre.json - finish pytest_ignore_collect --> None [hook] - pytest_co finish pytest_xdist_newgateway --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x702e7088edd0> - finish pytest_plugin_registered --> [] [hook] - pytest_configure_node [hook] - node: - finish pytest_configure_node --> [] [hook] - pytest_xdist_getremotemodule [hook] - finish pytest_xdist_getremotemodule --> [hook] - started node [config:nodemanager] - pytest_xdist_newgateway [hook] - gateway: - finish pytest_xdist_newgateway --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x702e7088edd0> - finish pytest_plugin_registered --> [] [hook] - pytest_configure_node [hook] - node: - finish pytest_configure_node --> [] [hook] - pytest_xdist_getremotemodule [hook] - finish pytest_xdist_getremotemodule --> [hook] - started node [config:nodemanager] - pytest_xdist_newgateway [hook] - gateway: - finish pytest_xdist_newgateway --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x702e7088edd0> - finish pytest_plugin_registered --> [] [hook] - pytest_configure_node [hook] - node: - finish pytest_configure_node --> [] [hook] - pytest_xdist_getremotemodule [hook] - finish pytest_xdist_getremotemodule --> [hook] - started node [config:nodemanager] - pytest_xdist_newgateway [hook] - gateway: - finish pytest_xdist_newgateway --> [] [hook] - pytest_plugin_registered [hook] - plugin: - manager: <_pytest.config.PytestPluginManager object at 0x702e7088edd0> - finish pytest_plugin_registered --> [] [hook] - pytest_configure_node [hook] - node: - finish pytest_configure_node --> [] [hook] - pytest_xdist_getremotemodule [hook] - finish pytest_xdist_getremotemodule --> [hook] - started node [config:nodemanager] - finish pytest_sessionstart --> [] [hook] - pytest_collection [hook] - session: testsfailed=0 testscollected=0> - finish pytest_collection --> True [hook] - pytest_runtestloop [hook] - session: testsfailed=0 testscollected=0> - pytest_xdist_make_scheduler [hook] - config: <_pytest.config.Config object at 0x702e705ade10> - log: Producer('dsession', enabled=pytestdebug.log) - finish pytest_xdist_make_scheduler --> [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_testnodeready [hook] - node: - finish pytest_testnodeready --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_xdist_node_collection_finished [hook] - node: - ids: ['test/regression/test_regression.py::test_entrypoint[rv32ui-and-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-remu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-simple-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-div-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-andi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-blt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slli-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-fence_i-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-beq-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mul-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slt-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ma_data-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bge-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sub-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bgeu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltiu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-rem-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-divu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srl-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sra-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-auipc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jalr-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sw-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sll-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sltu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lbu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-or-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulh-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-jal-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32uc-rvc-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-ori-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-sb-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-bne-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-slti-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-xor-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32um-mulhsu-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-lui-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-add-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-addi-pysim-False-False]', 'test/regression/test_regression.py::test_entrypoint[rv32ui-srai-pysim-False-False]'] - finish pytest_xdist_node_collection_finished --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - pytest_testnodedown [hook] - node: - error: None - finish pytest_testnodedown --> [] [hook] - finish pytest_runtestloop --> True [hook] - pytest_sessionfinish [hook] - session: testsfailed=11 testscollected=49> - exitstatus: 1 - pytest_terminal_summary [hook] - terminalreporter: <_pytest.terminal.TerminalReporter object at 0x702e6fc1a750> - exitstatus: 1 - config: <_pytest.config.Config object at 0x702e705ade10> - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - pytest_report_teststatus [hook] - report: - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_report_teststatus --> ('error', 'E', 'ERROR') [hook] - finish pytest_terminal_summary --> [] [hook] - finish pytest_sessionfinish --> [] [hook] - pytest_unconfigure [hook] - config: <_pytest.config.Config object at 0x702e705ade10> - finish pytest_unconfigure --> [] [hook] -st/regression/cocotb/build/benchmark/Vtop__Syms__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: testsfailed=0 testscollected=0> - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o - finish pytest_collect_file --> [] [hook] - finish pytest_make_collect_report --> [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - genitems [collection] - pytest_collectstart [hook] - collector: - finish pytest_collectstart --> [] [hook] - pytest_make_collect_report [hook] - collector: - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark.py - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb.py - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/common.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/common.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/common.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/common.py - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/conftest.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/conftest.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/conftest.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/conftest.py - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/memory.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/memory.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/memory.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/memory.py - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pysim.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pysim.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pysim.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pysim.py - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pytestdebug.log - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pytestdebug.log - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pytestdebug.log - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/pytestdebug.log - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/signature.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/signature.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/signature.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/signature.py - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py - finish pytest_ignore_collect --> None [hook] - pytest_collect_file [hook] - parent: - file_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py - pytest_pycollect_makemodule [hook] - parent: - module_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py - finish pytest_pycollect_makemodule --> [hook] - finish pytest_collect_file --> [] [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/aha-mont64.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/crc32.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/minver.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nettle-sha256.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/nsichneu.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/slre.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/slre.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/statemate.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/statemate.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/ud.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/ud.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd-lot-of-scalars.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd-lot-of-scalars.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd-mem.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd-mem.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vadd.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vmem.json - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/benchmark_results/vmem.json - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/benchmark.Makefile - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/benchmark.Makefile - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/benchmark_entrypoint.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/benchmark_entrypoint.py - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/results.xml - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/results.xml - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/signature.Makefile - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/signature.Makefile - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/signature_entrypoint.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/signature_entrypoint.py - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test.Makefile - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test.Makefile - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test_entrypoint.py - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test_entrypoint.py - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.h - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.mk - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ALL.a - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ALL.a - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ConstPool_0.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.h - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Dpi.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.h - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__1.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__10.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__11.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__12.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__13.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__14.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__15.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__16.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__17.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__18.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__19.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__2.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__20.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__21.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__22.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__23.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__24.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__25.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__26.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__27.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__28.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__29.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__3.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__30.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__31.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__32.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__33.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__34.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__35.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__36.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__37.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__38.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__39.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__4.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__40.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__41.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__42.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__43.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__44.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__45.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__46.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__47.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__48.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__49.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__5.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__50.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__51.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__52.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__53.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__54.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__55.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__56.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__57.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__58.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__59.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__6.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__60.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__61.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__62.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__63.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__64.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__65.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__66.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__7.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__8.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Syms__9.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__10__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__11__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__12__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__13__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__14__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__15__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__16__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__1__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__2__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__3__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__4__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__5__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__6__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__7__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__8__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__Trace__9__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root.h - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_h84412442__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__100.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__101.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__102.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__103.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__104.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__105.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__106.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__107.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__108.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__109.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__10__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__110.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__111.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__112.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__113.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__114.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__115.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__116.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__117.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__118.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__119.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__11__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__120.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__121.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__122.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__123.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__124.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__125.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__126.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__127.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__128.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__129.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__12__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__130.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__131.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__132.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__133.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__134.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__135.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__136.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__137.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__138.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__139.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__13__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__140.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__141.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__142.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__143.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__144.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__145.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__146.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__147.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__148.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__149.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__14__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__150.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__151.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__152.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__153.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__154.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__155.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__156.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__157.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__158.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__159.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__15__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__160.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__161.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__162.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__163.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__164.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__165.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__166.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__167.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__168.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__169.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__16__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__170.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__171.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__172.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__173.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__174.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__175.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__176.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__177.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__178.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__179.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__17__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__180.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__181.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__182.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__183.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__184.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__185.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__186.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__187.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__188.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__189.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__18__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__190.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__191.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__192.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__193.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__194.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__195.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__196.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__197.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__198.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__199.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__19__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__1__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__200.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__201.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__202.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__203.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__204.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__205.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__206.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__207.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__208.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__209.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__20__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__210.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__211.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__212.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__213.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__214.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__215.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__216.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__217.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__218.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__219.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__21__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__220.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__221.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__222.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__223.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__224.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__225.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__226.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__227.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__228.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__229.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__22__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__230.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__231.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__232.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__233.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__234.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__235.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__236.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__237.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__238.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__239.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__23__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__240.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__241.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__242.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__243.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__244.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__245.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__246.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__247.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__248.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__249.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__24__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__250.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__251.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__252.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__253.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__254.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__255.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__256.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__257.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__258.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__259.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__25__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__260.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__261.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__262.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__263.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__264.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__265.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__266.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__267.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__268.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__269.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__26__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__270.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__271.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__272.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__273.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__274.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__275.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__276.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__277.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__278.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__279.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__27__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__280.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__281.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__282.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__283.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__284.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__285.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__286.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__287.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__288.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__289.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__28__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__290.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__291.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__292.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__293.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__294.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__295.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__296.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__297.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__298.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__299.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__29__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__2__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__300.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__301.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__302.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__303.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__304.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__305.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__306.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__307.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__308.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__309.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__30__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__310.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__311.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__312.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__313.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__314.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__315.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__316.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__317.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__318.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__319.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__31__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__320.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__321.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__322.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__323.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__324.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__325.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__326.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__327.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__328.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__329.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__32__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__330.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__331.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__332.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__333.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__334.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__335.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__336.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__337.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__338.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__339.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__33__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__340.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__341.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__342.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__343.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__344.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__345.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__346.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__347.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__348.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__349.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__34__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__350.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__351.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__352.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__353.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__354.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__355.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__356.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__357.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__358.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__359.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__35__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__360.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__361.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__362.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__363.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__364.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__365.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__366.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__367.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__368.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__369.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__36__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__370.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__371.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__372.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__373.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__374.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__375.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__376.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__377.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__378.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__379.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__37__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__380.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__381.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__382.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__383.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__384.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__385.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__386.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__387.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__388.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__389.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__38__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__390.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__391.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__392.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__393.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__394.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__395.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__396.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__397.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__398.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__399.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__39__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__3__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__400.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__401.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__402.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__403.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__404.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__405.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__406.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__407.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__408.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__409.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__40__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__410.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__411.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__412.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__413.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__414.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__415.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__416.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__417.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__418.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__419.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__41__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__420.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__421.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__422.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__423.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__424.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__425.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__426.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__427.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__428.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__429.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__42__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__430.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__431.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__432.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__433.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__434.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__435.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__436.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__437.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__438.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__439.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__43__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__440.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__441.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__44__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__45__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__46__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__47__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__48__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__49__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__4__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__50__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__51__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__52__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__53__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__54__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__55__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__56__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__57__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__58__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__59__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__5__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__60__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__61__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__62__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__63__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__64__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__65__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__66__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__67__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__68__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__69__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__6__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__70.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__71.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__72.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__73.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__74.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__75.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__76.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__77.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__78.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__79.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__7__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__80.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__81.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__82.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__83.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__84.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__85.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__86.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__87.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__88.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__89.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__8__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__90.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__91.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__92.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__93.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__94.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__95.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__96.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__97.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__98.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__99.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__DepSet_heccd7ead__9__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop___024root__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__ver.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop__verFiles.dat - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/Vtop_classes.mk - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_dpi.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_fst_c.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_threads.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilated_vpi.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/benchmark/verilator.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.h - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.mk - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ALL.a - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ConstPool_0.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.h - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Dpi.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.h - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__1.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__11.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__12.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__13.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__14.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__15.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__16.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__17.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__18.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__19.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__2.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__3.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__4.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__5.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__6.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__Syms__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root.h - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_h84412442__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__0__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__100.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__101.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__102.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__103.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__104.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__105.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__106.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__107.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__108.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__109.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__10__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__110.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__111.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__112.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__113.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__114.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__115.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__116.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__117.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__118.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__119.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__11__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__120.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__121.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__122.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__123.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__124.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__125.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__126.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__127.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__128.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__129.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__12__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__130.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__131.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__132.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__133.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__134.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__135.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__13__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__14__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__15__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__16__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__17__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__18__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__19__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__1__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__20__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__21__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__22__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__23.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__24.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__25.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__26.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__27.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__28.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__29.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__2__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__30.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__31.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__32.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__33.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__34.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__35.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__36.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__37.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__38.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__39.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__3__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__40.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__41.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__42.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__43.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__44.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__45.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__46.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__47.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__48.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__49.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__4__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__50.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__51.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__52.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__53.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__54.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__55.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__56.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__57.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__58.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__59.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__5__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__60.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__61.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__62.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__63.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__64.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__65.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__66.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__67.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__68.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__69.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__6__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__70.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__71.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__72.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__73.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__74.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__75.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__76.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__77.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__78.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__79.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__7__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__80.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__81.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__82.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__83.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__84.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__85.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__86.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__87.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__88.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__89.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__8__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__90.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__91.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__92.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__93.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__94.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__95.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__96.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__97.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__98.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__99.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__DepSet_heccd7ead__9__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.cpp - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop___024root__Slow.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__ver.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop__verFiles.dat - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/Vtop_classes.mk - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_dpi.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_threads.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilated_vpi.o - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.d - finish pytest_ignore_collect --> None [hook] - pytest_ignore_collect [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - collection_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o - path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/build/test/verilator.o - finish pytest_ignore_collect --> None [hook] - finish pytest_make_collect_report --> [hook] - genitems [collection] - pytest_collectstart [hook] - collector: - finish pytest_collectstart --> [] [hook] - pytest_make_collect_report [hook] - collector: - find_module called for: test.regression.test_regression [assertion] - matched test file '/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py' [assertion] - found cached rewritten pyc for /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/test_regression.py [assertion] - early skip of rewriting module: test.regression.memory [assertion] - early skip of rewriting module: elftools [assertion] - early skip of rewriting module: elftools.elf [assertion] - early skip of rewriting module: elftools.elf.constants [assertion] - early skip of rewriting module: elftools.elf.elffile [assertion] - early skip of rewriting module: resource [assertion] - early skip of rewriting module: elftools.common [assertion] - early skip of rewriting module: elftools.common.py3compat [assertion] - early skip of rewriting module: elftools.common.exceptions [assertion] - early skip of rewriting module: elftools.common.utils [assertion] - early skip of rewriting module: elftools.construct [assertion] - early skip of rewriting module: elftools.construct.core [assertion] - early skip of rewriting module: elftools.construct.lib [assertion] - early skip of rewriting module: elftools.construct.lib.binary [assertion] - early skip of rewriting module: elftools.construct.lib.py3compat [assertion] - early skip of rewriting module: elftools.construct.lib.bitstream [assertion] - early skip of rewriting module: elftools.construct.lib.container [assertion] - early skip of rewriting module: elftools.construct.lib.hex [assertion] - early skip of rewriting module: elftools.construct.adapters [assertion] - early skip of rewriting module: elftools.construct.macros [assertion] - early skip of rewriting module: elftools.construct.debug [assertion] - early skip of rewriting module: elftools.elf.structs [assertion] - early skip of rewriting module: elftools.common.construct_utils [assertion] - early skip of rewriting module: elftools.elf.enums [assertion] - early skip of rewriting module: elftools.elf.sections [assertion] - early skip of rewriting module: elftools.elf.notes [assertion] - early skip of rewriting module: elftools.elf.dynamic [assertion] - early skip of rewriting module: elftools.elf.hash [assertion] - early skip of rewriting module: elftools.elf.segments [assertion] - early skip of rewriting module: elftools.elf.relocation [assertion] - early skip of rewriting module: elftools.elf.gnuversions [assertion] - early skip of rewriting module: elftools.dwarf [assertion] - early skip of rewriting module: elftools.dwarf.dwarfinfo [assertion] - early skip of rewriting module: elftools.dwarf.structs [assertion] - early skip of rewriting module: logging.config [assertion] - early skip of rewriting module: logging.handlers [assertion] - early skip of rewriting module: pickle [assertion] - early skip of rewriting module: _compat_pickle [assertion] - early skip of rewriting module: _pickle [assertion] - early skip of rewriting module: org [assertion] - early skip of rewriting module: socketserver [assertion] - early skip of rewriting module: elftools.dwarf.enums [assertion] - early skip of rewriting module: elftools.dwarf.compileunit [assertion] - early skip of rewriting module: elftools.dwarf.die [assertion] - early skip of rewriting module: elftools.dwarf.dwarf_util [assertion] - early skip of rewriting module: elftools.dwarf.abbrevtable [assertion] - early skip of rewriting module: elftools.dwarf.lineprogram [assertion] - early skip of rewriting module: elftools.dwarf.constants [assertion] - early skip of rewriting module: elftools.dwarf.callframe [assertion] - early skip of rewriting module: elftools.dwarf.locationlists [assertion] - early skip of rewriting module: elftools.dwarf.ranges [assertion] - early skip of rewriting module: elftools.dwarf.aranges [assertion] - early skip of rewriting module: elftools.dwarf.namelut [assertion] - early skip of rewriting module: elftools.ehabi [assertion] - early skip of rewriting module: elftools.ehabi.ehabiinfo [assertion] - early skip of rewriting module: elftools.ehabi.decoder [assertion] - early skip of rewriting module: elftools.ehabi.constants [assertion] - early skip of rewriting module: elftools.ehabi.structs [assertion] - early skip of rewriting module: coreblocks [assertion] - early skip of rewriting module: coreblocks.params [assertion] - early skip of rewriting module: coreblocks.params.isa [assertion] - early skip of rewriting module: amaranth [assertion] - early skip of rewriting module: amaranth.hdl [assertion] - early skip of rewriting module: amaranth.hdl.ast [assertion] - early skip of rewriting module: amaranth.hdl._repr [assertion] - early skip of rewriting module: amaranth.tracer [assertion] - early skip of rewriting module: amaranth._utils [assertion] - early skip of rewriting module: amaranth.utils [assertion] - early skip of rewriting module: amaranth._unused [assertion] - early skip of rewriting module: amaranth.hdl.dsl [assertion] - early skip of rewriting module: amaranth.hdl.ir [assertion] - early skip of rewriting module: amaranth.hdl.cd [assertion] - early skip of rewriting module: amaranth.hdl.xfrm [assertion] - early skip of rewriting module: amaranth.hdl.mem [assertion] - early skip of rewriting module: amaranth.hdl.rec [assertion] - early skip of rewriting module: amaranth.hdl._rec [assertion] - early skip of rewriting module: amaranth.lib [assertion] - early skip of rewriting module: amaranth.lib.wiring [assertion] - early skip of rewriting module: amaranth.lib.enum [assertion] - early skip of rewriting module: coreblocks.params.optypes [assertion] - early skip of rewriting module: coreblocks.params.genparams [assertion] - early skip of rewriting module: coreblocks.params.icache_params [assertion] - early skip of rewriting module: coreblocks.params.fu_params [assertion] - early skip of rewriting module: coreblocks.utils [assertion] - early skip of rewriting module: coreblocks.utils.protocols [assertion] - early skip of rewriting module: transactron [assertion] - early skip of rewriting module: transactron.core [assertion] - early skip of rewriting module: graphlib [assertion] - early skip of rewriting module: typing_extensions [assertion] - early skip of rewriting module: transactron.graph [assertion] - early skip of rewriting module: transactron.tracing [assertion] - early skip of rewriting module: transactron.utils [assertion] - early skip of rewriting module: transactron.utils.data_repr [assertion] - early skip of rewriting module: transactron.utils._typing [assertion] - early skip of rewriting module: amaranth.lib.data [assertion] - early skip of rewriting module: statistics [assertion] - early skip of rewriting module: fractions [assertion] - early skip of rewriting module: _statistics [assertion] - early skip of rewriting module: transactron.utils.debug_signals [assertion] - early skip of rewriting module: transactron.utils.assign [assertion] - early skip of rewriting module: transactron.utils.amaranth_ext [assertion] - early skip of rewriting module: transactron.utils.amaranth_ext.functions [assertion] - early skip of rewriting module: transactron.utils.amaranth_ext.elaboratables [assertion] - early skip of rewriting module: transactron.utils.transactron_helpers [assertion] - early skip of rewriting module: transactron.utils.dependencies [assertion] - early skip of rewriting module: transactron.utils.depcache [assertion] - early skip of rewriting module: coreblocks.peripherals [assertion] - early skip of rewriting module: coreblocks.peripherals.wishbone [assertion] - early skip of rewriting module: transactron.lib [assertion] - early skip of rewriting module: transactron.lib.fifo [assertion] - early skip of rewriting module: transactron.lib.connectors [assertion] - early skip of rewriting module: amaranth.lib.fifo [assertion] - early skip of rewriting module: amaranth.asserts [assertion] - early skip of rewriting module: amaranth.lib.coding [assertion] - early skip of rewriting module: amaranth.lib.cdc [assertion] - early skip of rewriting module: transactron.lib.buttons [assertion] - early skip of rewriting module: transactron.lib.adapters [assertion] - early skip of rewriting module: transactron.lib.transformers [assertion] - early skip of rewriting module: transactron.lib.simultaneous [assertion] - early skip of rewriting module: transactron.lib.reqres [assertion] - early skip of rewriting module: transactron.lib.storage [assertion] - early skip of rewriting module: coreblocks.params.layouts [assertion] - early skip of rewriting module: coreblocks.params.keys [assertion] - early skip of rewriting module: transactron.lib.dependencies [assertion] - early skip of rewriting module: coreblocks.params.instr [assertion] - early skip of rewriting module: coreblocks.params.configurations [assertion] - early skip of rewriting module: coreblocks.lsu [assertion] - early skip of rewriting module: coreblocks.lsu.pma [assertion] - early skip of rewriting module: coreblocks.stages [assertion] - early skip of rewriting module: coreblocks.stages.rs_func_block [assertion] - early skip of rewriting module: coreblocks.structs_common [assertion] - early skip of rewriting module: coreblocks.structs_common.rs [assertion] - early skip of rewriting module: coreblocks.scheduler [assertion] - early skip of rewriting module: coreblocks.scheduler.wakeup_select [assertion] - early skip of rewriting module: coreblocks.fu [assertion] - early skip of rewriting module: coreblocks.fu.alu [assertion] - early skip of rewriting module: coreblocks.fu.fu_decoder [assertion] - early skip of rewriting module: coreblocks.fu.shift_unit [assertion] - early skip of rewriting module: coreblocks.fu.jumpbranch [assertion] - early skip of rewriting module: coreblocks.fu.mul_unit [assertion] - early skip of rewriting module: coreblocks.fu.unsigned_multiplication [assertion] - early skip of rewriting module: coreblocks.fu.unsigned_multiplication.fast_recursive [assertion] - early skip of rewriting module: coreblocks.fu.unsigned_multiplication.common [assertion] - early skip of rewriting module: coreblocks.fu.unsigned_multiplication.sequence [assertion] - early skip of rewriting module: coreblocks.fu.unsigned_multiplication.shift [assertion] - early skip of rewriting module: coreblocks.fu.div_unit [assertion] - early skip of rewriting module: coreblocks.fu.division [assertion] - early skip of rewriting module: coreblocks.fu.division.long_division [assertion] - early skip of rewriting module: coreblocks.fu.division.common [assertion] - early skip of rewriting module: coreblocks.fu.zbc [assertion] - early skip of rewriting module: coreblocks.fu.zbs [assertion] - early skip of rewriting module: coreblocks.fu.exception [assertion] - early skip of rewriting module: coreblocks.fu.priv [assertion] - early skip of rewriting module: coreblocks.lsu.dummyLsu [assertion] - early skip of rewriting module: coreblocks.structs_common.csr [assertion] - early skip of rewriting module: test.regression.common [assertion] - early skip of rewriting module: test.regression.pysim [assertion] - early skip of rewriting module: amaranth.sim [assertion] - early skip of rewriting module: amaranth.sim.core [assertion] - early skip of rewriting module: amaranth.sim._base [assertion] - early skip of rewriting module: test.common [assertion] - early skip of rewriting module: test.common.functions [assertion] - early skip of rewriting module: test.common.infrastructure [assertion] - early skip of rewriting module: test.common.testbenchio [assertion] - early skip of rewriting module: test.common.profiler [assertion] - early skip of rewriting module: transactron.profiler [assertion] - early skip of rewriting module: dataclasses_json [assertion] - early skip of rewriting module: dataclasses_json.api [assertion] - early skip of rewriting module: dataclasses_json.cfg [assertion] - early skip of rewriting module: marshmallow [assertion] - early skip of rewriting module: marshmallow.decorators [assertion] - early skip of rewriting module: marshmallow.exceptions [assertion] - early skip of rewriting module: marshmallow.schema [assertion] - early skip of rewriting module: marshmallow.base [assertion] - early skip of rewriting module: marshmallow.fields [assertion] - early skip of rewriting module: marshmallow.validate [assertion] - early skip of rewriting module: marshmallow.types [assertion] - early skip of rewriting module: marshmallow.utils [assertion] - early skip of rewriting module: marshmallow.warnings [assertion] - early skip of rewriting module: marshmallow.class_registry [assertion] - early skip of rewriting module: marshmallow.error_store [assertion] - early skip of rewriting module: marshmallow.orderedset [assertion] - early skip of rewriting module: dataclasses_json.stringcase [assertion] - early skip of rewriting module: dataclasses_json.undefined [assertion] - early skip of rewriting module: dataclasses_json.utils [assertion] - early skip of rewriting module: dataclasses_json.core [assertion] - early skip of rewriting module: typing_inspect [assertion] - early skip of rewriting module: mypy_extensions [assertion] - early skip of rewriting module: dataclasses_json.mm [assertion] - early skip of rewriting module: dataclasses_json.__version__ [assertion] - early skip of rewriting module: test.gtkw_extension [assertion] - early skip of rewriting module: amaranth.sim.pysim [assertion] - early skip of rewriting module: vcd [assertion] - early skip of rewriting module: vcd.reader [assertion] - early skip of rewriting module: vcd.common [assertion] - early skip of rewriting module: vcd.writer [assertion] - early skip of rewriting module: vcd.gtkw [assertion] - early skip of rewriting module: amaranth.sim._pyrtl [assertion] - early skip of rewriting module: amaranth.sim._pycoro [assertion] - early skip of rewriting module: amaranth.sim._pyclock [assertion] - early skip of rewriting module: test.common.sugar [assertion] - early skip of rewriting module: test.peripherals [assertion] - find_module called for: test.peripherals.test_wishbone [assertion] - matched test file '/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/peripherals/test_wishbone.py' [assertion] - found cached rewritten pyc for /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/peripherals/test_wishbone.py [assertion] - early skip of rewriting module: coreblocks.core [assertion] - early skip of rewriting module: coreblocks.stages.func_blocks_unifier [assertion] - early skip of rewriting module: coreblocks.structs_common.instr_counter [assertion] - early skip of rewriting module: coreblocks.structs_common.interrupt_controller [assertion] - early skip of rewriting module: coreblocks.frontend [assertion] - early skip of rewriting module: coreblocks.frontend.decode_stage [assertion] - early skip of rewriting module: coreblocks.frontend.instr_decoder [assertion] - early skip of rewriting module: coreblocks.frontend.instr_description [assertion] - early skip of rewriting module: coreblocks.structs_common.rat [assertion] - early skip of rewriting module: coreblocks.structs_common.rob [assertion] - early skip of rewriting module: coreblocks.structs_common.rf [assertion] - early skip of rewriting module: coreblocks.structs_common.csr_generic [assertion] - early skip of rewriting module: coreblocks.structs_common.exception [assertion] - early skip of rewriting module: coreblocks.scheduler.scheduler [assertion] - early skip of rewriting module: coreblocks.stages.backend [assertion] - early skip of rewriting module: coreblocks.stages.retirement [assertion] - early skip of rewriting module: coreblocks.frontend.icache [assertion] - early skip of rewriting module: coreblocks.frontend.fetch [assertion] - early skip of rewriting module: coreblocks.frontend.rvc [assertion] - early skip of rewriting module: asyncio [assertion] - early skip of rewriting module: asyncio.base_events [assertion] - early skip of rewriting module: asyncio.constants [assertion] - early skip of rewriting module: asyncio.coroutines [assertion] - early skip of rewriting module: asyncio.events [assertion] - early skip of rewriting module: asyncio.format_helpers [assertion] - early skip of rewriting module: _asyncio [assertion] - early skip of rewriting module: asyncio.base_futures [assertion] - early skip of rewriting module: asyncio.exceptions [assertion] - early skip of rewriting module: asyncio.base_tasks [assertion] - early skip of rewriting module: asyncio.futures [assertion] - early skip of rewriting module: asyncio.protocols [assertion] - early skip of rewriting module: asyncio.sslproto [assertion] - early skip of rewriting module: asyncio.transports [assertion] - early skip of rewriting module: asyncio.log [assertion] - early skip of rewriting module: asyncio.staggered [assertion] - early skip of rewriting module: asyncio.locks [assertion] - early skip of rewriting module: asyncio.mixins [assertion] - early skip of rewriting module: asyncio.tasks [assertion] - early skip of rewriting module: asyncio.trsock [assertion] - early skip of rewriting module: asyncio.runners [assertion] - early skip of rewriting module: asyncio.queues [assertion] - early skip of rewriting module: asyncio.streams [assertion] - early skip of rewriting module: asyncio.subprocess [assertion] - early skip of rewriting module: asyncio.taskgroups [assertion] - early skip of rewriting module: asyncio.timeouts [assertion] - early skip of rewriting module: asyncio.threads [assertion] - early skip of rewriting module: asyncio.unix_events [assertion] - early skip of rewriting module: asyncio.base_subprocess [assertion] - early skip of rewriting module: asyncio.selector_events [assertion] - pytest_pycollect_makeitem [hook] - collector: - name: @py_builtins - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: @pytest_ar - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: ABC - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: abstractmethod - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: Callable - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: Enum - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: IntFlag - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: auto - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: Optional - obj: typing.Optional - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: TypeVar - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: dataclass - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: replace - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: P_FLAGS - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: ELFFile - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: Segment - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: CoreConfiguration - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: align_to_power_of_two - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: align_down_to_power_of_two - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: all - obj: ['ReplyStatus', 'ReadRequest', 'ReadReply', 'WriteRequest', 'WriteReply', 'MemoryModel', 'RAMSegment', 'CoreMemoryModel'] - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: ReplyStatus - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: SegmentFlags - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: ReadRequest - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: ReadReply - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: WriteRequest - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: WriteReply - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: MemorySegment - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: RandomAccessMemory - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: TReq - obj: ~TReq - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: TRep - obj: ~TRep - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: CoreMemoryModel - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: load_segment - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: load_segments_from_elf - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: SimulationBackend - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: riscv_tests_dir - obj: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/external/riscv-tests - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: exclude_write_protection - obj: ['rv32uc-rvc'] - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: MMIO - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: run_test - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: REGRESSION_TESTS_PREFIX - obj: test.regression. - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: PySimulation - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: asyncio - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: Literal - obj: typing.Literal - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: os - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: subprocess - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: run_regressions_with_cocotb - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: regression_body_with_pysim - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: test_entrypoint - obj: - pytest_generate_tests [hook] - metafunc: <_pytest.python.Metafunc object at 0x7c56b3768dd0> - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-and - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - early skip of rewriting module: encodings.unicode_escape [assertion] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32um-remu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-bltu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-lb - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-lhu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-simple - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32um-div - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-andi - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-srli - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-blt - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-slli - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-fence_i - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-beq - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32um-mul - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-slt - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-xori - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-ma_data - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-bge - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-sub - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-bgeu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-sltiu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32um-rem - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32um-divu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-sh - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-srl - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-lw - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-sra - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-auipc - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-lh - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-jalr - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-sw - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-sll - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-sltu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-lbu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-or - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32um-mulhu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32um-mulh - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-jal - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32uc-rvc - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-ori - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-sb - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-bne - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-slti - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-xor - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32um-mulhsu - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-lui - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-add - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-addi - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: rv32ui-srai - argname: test_name - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: pysim - argname: backend - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: traces - finish pytest_make_parametrize_id --> None [hook] - pytest_make_parametrize_id [hook] - config: <_pytest.config.Config object at 0x7c56b82e6e50> - val: False - argname: verbose - finish pytest_make_parametrize_id --> None [hook] - finish pytest_generate_tests --> [] [hook] - finish pytest_pycollect_makeitem --> [, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] [hook] - finish pytest_make_collect_report --> [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - genitems [collection] - pytest_itemcollected [hook] - item: - finish pytest_itemcollected --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - genitems [collection] - pytest_collectstart [hook] - collector: - finish pytest_collectstart --> [] [hook] - pytest_make_collect_report [hook] - collector: - find_module called for: test_entrypoint [assertion] - matched test file '/mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test_entrypoint.py' [assertion] - found cached rewritten pyc for /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression/cocotb/test_entrypoint.py [assertion] - early skip of rewriting module: cocotb [assertion] - early skip of rewriting module: cocotb.handle [assertion] - early skip of rewriting module: ctypes [assertion] - early skip of rewriting module: _ctypes [assertion] - early skip of rewriting module: ctypes._endian [assertion] - early skip of rewriting module: cocotb.simulator [assertion] - early skip of rewriting module: cocotb.binary [assertion] - early skip of rewriting module: cocotb.log [assertion] - early skip of rewriting module: cocotb.ANSI [assertion] - early skip of rewriting module: cocotb.utils [assertion] - early skip of rewriting module: cocotb.types [assertion] - early skip of rewriting module: cocotb.types.array [assertion] - early skip of rewriting module: cocotb.types.range [assertion] - early skip of rewriting module: cocotb.types.logic [assertion] - early skip of rewriting module: cocotb.types.logic_array [assertion] - early skip of rewriting module: cocotb._deprecation [assertion] - find_module called for: cocotb.regression [assertion] - early skip of rewriting module: cocotb.decorators [assertion] - early skip of rewriting module: cocotb.triggers [assertion] - early skip of rewriting module: cocotb.outcomes [assertion] - early skip of rewriting module: cocotb.result [assertion] - early skip of rewriting module: cocotb.xunit_reporter [assertion] - early skip of rewriting module: cocotb.scheduler [assertion] - early skip of rewriting module: cocotb._py_compat [assertion] - early skip of rewriting module: cocotb._version [assertion] - early skip of rewriting module: test.regression.cocotb [assertion] - early skip of rewriting module: cocotb.clock [assertion] - early skip of rewriting module: cocotb_bus [assertion] - early skip of rewriting module: cocotb_bus._version [assertion] - early skip of rewriting module: cocotb_bus.bus [assertion] - pytest_pycollect_makeitem [hook] - collector: - name: @py_builtins - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: @pytest_ar - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: sys - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: cocotb - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: Path - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: top_dir - obj: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: CocotbSimulation - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: generate_tests - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: run_test - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: get_all_test_names - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: do_test - obj: - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-and - obj: rv32ui-and - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32um-remu - obj: rv32um-remu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-bltu - obj: rv32ui-bltu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-lb - obj: rv32ui-lb - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-lhu - obj: rv32ui-lhu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-simple - obj: rv32ui-simple - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32um-div - obj: rv32um-div - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-andi - obj: rv32ui-andi - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-srli - obj: rv32ui-srli - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-blt - obj: rv32ui-blt - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-slli - obj: rv32ui-slli - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-fence_i - obj: rv32ui-fence_i - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-beq - obj: rv32ui-beq - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32um-mul - obj: rv32um-mul - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-slt - obj: rv32ui-slt - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-xori - obj: rv32ui-xori - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-ma_data - obj: rv32ui-ma_data - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-bge - obj: rv32ui-bge - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-sub - obj: rv32ui-sub - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-bgeu - obj: rv32ui-bgeu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-sltiu - obj: rv32ui-sltiu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32um-rem - obj: rv32um-rem - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32um-divu - obj: rv32um-divu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-sh - obj: rv32ui-sh - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-srl - obj: rv32ui-srl - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-lw - obj: rv32ui-lw - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-sra - obj: rv32ui-sra - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-auipc - obj: rv32ui-auipc - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-lh - obj: rv32ui-lh - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-jalr - obj: rv32ui-jalr - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-sw - obj: rv32ui-sw - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-sll - obj: rv32ui-sll - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-sltu - obj: rv32ui-sltu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-lbu - obj: rv32ui-lbu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-or - obj: rv32ui-or - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32um-mulhu - obj: rv32um-mulhu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32um-mulh - obj: rv32um-mulh - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-jal - obj: rv32ui-jal - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32uc-rvc - obj: rv32uc-rvc - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-ori - obj: rv32ui-ori - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-sb - obj: rv32ui-sb - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-bne - obj: rv32ui-bne - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-slti - obj: rv32ui-slti - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-xor - obj: rv32ui-xor - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32um-mulhsu - obj: rv32um-mulhsu - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-lui - obj: rv32ui-lui - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-add - obj: rv32ui-add - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-addi - obj: rv32ui-addi - finish pytest_pycollect_makeitem --> None [hook] - pytest_pycollect_makeitem [hook] - collector: - name: rv32ui-srai - obj: rv32ui-srai - finish pytest_pycollect_makeitem --> None [hook] - finish pytest_make_collect_report --> [hook] - pytest_collectreport [hook] - report: - finish pytest_collectreport --> [] [hook] - pytest_collection_modifyitems [hook] - session: testsfailed=0 testscollected=0> - config: <_pytest.config.Config object at 0x7c56b82e6e50> - items: [, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] - finish pytest_collection_modifyitems --> [] [hook] - pytest_collection_finish [hook] - session: testsfailed=0 testscollected=0> - pytest_report_collectionfinish [hook] - config: <_pytest.config.Config object at 0x7ee57bf2ea50> - items: [, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] - start_path: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression - startdir: /mnt/Atena/DANE/Dokumenty/Informatyka/Verilog/Kuznia/coreblocks/test/regression - finish pytest_report_collectionfinish --> [] [hook] - finish pytest_collection_finish --> [] [hook] - finish pytest_collection --> None [hook] - pytest_runtestloop [hook] - session: testsfailed=0 testscollected=49> - finish pytest_runtestloop --> True [hook] - pytest_sessionfinish [hook] - session: - exitstatus: 0 - pytest_terminal_summary [hook] - terminalreporter: <_pytest.terminal.TerminalReporter object at 0x7ee57bd89290> - exitstatus: 0 - config: <_pytest.config.Config object at 0x7ee57bf2ea50> - finish pytest_terminal_summary --> [] [hook] - finish pytest_sessionfinish --> [] [hook] - pytest_unconfigure [hook] - config: <_pytest.config.Config object at 0x7ee57bf2ea50> - finish pytest_unconfigure --> [] [hook] diff --git a/test/regression/test_regression.py b/test/regression/test_regression.py index 9dab61b5f..339d7120e 100644 --- a/test/regression/test_regression.py +++ b/test/regression/test_regression.py @@ -6,7 +6,6 @@ from typing import Literal import os import subprocess -import sys REGRESSION_TESTS_PREFIX = "test.regression." @@ -52,10 +51,12 @@ async def run_test(sim_backend: SimulationBackend, test_name: str): def regression_body_with_cocotb(test_name: str, traces: bool): - print(os.getcwd(), file=sys.stderr) - arglist = ["make", "-C", "cocotb", "-f", "test.Makefile"] + arglist = ["make", "-C", "test/regression/cocotb", "-f", "test.Makefile"] arglist += [f"TESTCASE={test_name}"] + verilog_code = os.path.join(os.getcwd(), "core.v") + arglist += [f"VERILOG_SOURCES={verilog_code}"] + if traces: arglist += ["TRACES=1"] From 58fc77a77cff00a07999004c19dbed957fb094bf Mon Sep 17 00:00:00 2001 From: Lekcyjna <309016@uwr.edu.pl> Date: Mon, 12 Feb 2024 17:21:53 +0100 Subject: [PATCH 5/8] Remove race. --- .gitignore | 1 + pytest.ini | 1 - requirements-dev.txt | 3 ++- test/regression/cocotb/test_entrypoint.py | 7 ++++++- test/regression/test_regression.py | 20 +++++++++++++++++++- 5 files changed, 28 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index e9bef0b0e..c54da96a3 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ venv.bak/ test/__traces__ test/__profiles__/*.json pytestdebug.log +_coreblocks_regression.lock # cocotb build /test/regression/cocotb/build diff --git a/pytest.ini b/pytest.ini index a5cf2ffa0..142b00abe 100644 --- a/pytest.ini +++ b/pytest.ini @@ -5,5 +5,4 @@ testpaths = norecursedirs = '*.egg', '.*', 'build', 'dist', 'venv', '__traces__', '__pycache__' filterwarnings = ignore:cannot collect test class 'TestbenchIO':pytest.PytestCollectionWarning - ignore:.*amaranth.hdl.rec.*0.6:DeprecationWarning ignore:No files were found in testpaths:pytest.PytestConfigWarning: diff --git a/requirements-dev.txt b/requirements-dev.txt index e8468d2ab..1d9530305 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -13,9 +13,10 @@ pyright==1.1.332 Sphinx==5.1.1 sphinx-rtd-theme==1.0.0 sphinxcontrib-mermaid==0.8.1 -cocotb==1.7.2 +cocotb==1.8.1 cocotb-bus==0.2.1 pytest==8.0.0 pytest-xdist==3.5.0 pyelftools==0.29 tabulate==0.9.0 +filelock==3.13.1 diff --git a/test/regression/cocotb/test_entrypoint.py b/test/regression/cocotb/test_entrypoint.py index 707344dbe..36879b2a6 100644 --- a/test/regression/cocotb/test_entrypoint.py +++ b/test/regression/cocotb/test_entrypoint.py @@ -9,10 +9,15 @@ from test.regression.test_regression import run_test # noqa: E402 from test.regression.conftest import get_all_test_names # noqa: E402 +# used to build the Verilator model without starting tests +empty_testcase_name = "SKIP" + async def do_test(dut, test_name): cocotb.logging.getLogger().setLevel(cocotb.logging.INFO) + if test_name == empty_testcase_name: + return await run_test(CocotbSimulation(dut), test_name) -generate_tests(do_test, list(get_all_test_names())) +generate_tests(do_test, list(get_all_test_names()) + [empty_testcase_name]) diff --git a/test/regression/test_regression.py b/test/regression/test_regression.py index 339d7120e..a1a37422a 100644 --- a/test/regression/test_regression.py +++ b/test/regression/test_regression.py @@ -5,7 +5,9 @@ import asyncio from typing import Literal import os +import pytest import subprocess +from filelock import FileLock REGRESSION_TESTS_PREFIX = "test.regression." @@ -72,7 +74,23 @@ def regression_body_with_pysim(test_name: str, traces: bool, verbose: bool): asyncio.run(run_test(PySimulation(verbose, traces_file=traces_file), test_name)) -def test_entrypoint(test_name: str, backend: Literal["pysim", "cocotb"], traces: bool, verbose: bool): +@pytest.fixture(scope="session") +def verilate_model(worker_id, request: pytest.FixtureRequest): + """ + Fixture to prevent races on verilating the coreblocks model. It is run only in + distributed, cocotb, mode. It executes a 'SKIP' regression test which verilates the model. + """ + if request.session.config.getoption("coreblocks_backend") != "cocotb" or worker_id == "master": + return + + lock_path = "_coreblocks_regression.lock" + with FileLock(lock_path): + regression_body_with_cocotb("SKIP", False) + yield + os.remove(lock_path) + + +def test_entrypoint(test_name: str, backend: Literal["pysim", "cocotb"], traces: bool, verbose: bool, verilate_model): if backend == "cocotb": regression_body_with_cocotb(test_name, traces) elif backend == "pysim": From 0592750dbdd497aaacbedd356cc6af032072a1b3 Mon Sep 17 00:00:00 2001 From: Lekcyjna <309016@uwr.edu.pl> Date: Mon, 12 Feb 2024 17:50:27 +0100 Subject: [PATCH 6/8] Fix race on clear --- .gitignore | 1 + test/regression/test_regression.py | 23 ++++++++++++++++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c54da96a3..c0cbd0741 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ test/__traces__ test/__profiles__/*.json pytestdebug.log _coreblocks_regression.lock +_coreblocks_regression.counter # cocotb build /test/regression/cocotb/build diff --git a/test/regression/test_regression.py b/test/regression/test_regression.py index a1a37422a..d1e61a371 100644 --- a/test/regression/test_regression.py +++ b/test/regression/test_regression.py @@ -7,6 +7,7 @@ import os import pytest import subprocess +import json from filelock import FileLock REGRESSION_TESTS_PREFIX = "test.regression." @@ -84,10 +85,30 @@ def verilate_model(worker_id, request: pytest.FixtureRequest): return lock_path = "_coreblocks_regression.lock" + counter_path = "_coreblocks_regression.counter" with FileLock(lock_path): regression_body_with_cocotb("SKIP", False) + if os.path.exists(counter_path): + with open(counter_path, "r") as counter_file: + c = json.load(counter_file) + else: + c = 0 + with open(counter_path, "w") as counter_file: + json.dump(c + 1, counter_file) yield - os.remove(lock_path) + # Session teardown + deferred_remove = False + with FileLock(lock_path): + with open(counter_path, "r") as counter_file: + c = json.load(counter_file) + if c == 1: + deferred_remove = True + else: + with open(counter_path, "w") as counter_file: + json.dump(c - 1, counter_file) + if deferred_remove: + os.remove(lock_path) + os.remove(counter_path) def test_entrypoint(test_name: str, backend: Literal["pysim", "cocotb"], traces: bool, verbose: bool, verilate_model): From cbbe6a4dd03b3dd700c368d701297f0e05e8547a Mon Sep 17 00:00:00 2001 From: Lekcyjna <309016@uwr.edu.pl> Date: Mon, 12 Feb 2024 18:56:13 +0100 Subject: [PATCH 7/8] Fix race on results.xml --- .github/workflows/main.yml | 3 --- scripts/check_test_results.py | 22 ---------------------- test/regression/test_regression.py | 7 +++++++ 3 files changed, 7 insertions(+), 25 deletions(-) delete mode 100755 scripts/check_test_results.py diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9bb28de3c..112bfb9af 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -218,9 +218,6 @@ jobs: . venv/bin/activate scripts/run_tests.py -a regression - - name: Check for test failure - run: ./scripts/check_test_results.py - unit-test: name: Run unit tests runs-on: ubuntu-latest diff --git a/scripts/check_test_results.py b/scripts/check_test_results.py deleted file mode 100755 index c10af9bc2..000000000 --- a/scripts/check_test_results.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python3 - -import sys -import os -import pathlib -import xml.etree.ElementTree as eT - -FAILURE_TAG = "failure" -TOP_DIR = pathlib.Path(__file__).parent.parent -TEST_RESULTS_FILE = TOP_DIR.joinpath("test/regression/cocotb/results.xml") - -if not os.path.exists(TEST_RESULTS_FILE): - print("File not found: ", TEST_RESULTS_FILE) - sys.exit(1) - -tree = eT.parse(TEST_RESULTS_FILE) - -if len(list(tree.iter(FAILURE_TAG))) > 0: - print("Some regression tests failed") - sys.exit(1) - -print("All regression tests pass") diff --git a/test/regression/test_regression.py b/test/regression/test_regression.py index d1e61a371..48762cb4d 100644 --- a/test/regression/test_regression.py +++ b/test/regression/test_regression.py @@ -2,12 +2,14 @@ from .common import SimulationBackend from .conftest import riscv_tests_dir from test.regression.pysim import PySimulation +import xml.etree.ElementTree as eT import asyncio from typing import Literal import os import pytest import subprocess import json +import tempfile from filelock import FileLock REGRESSION_TESTS_PREFIX = "test.regression." @@ -59,6 +61,8 @@ def regression_body_with_cocotb(test_name: str, traces: bool): verilog_code = os.path.join(os.getcwd(), "core.v") arglist += [f"VERILOG_SOURCES={verilog_code}"] + tmp_result_file = tempfile.NamedTemporaryFile("r") + arglist += [f"COCOTB_RESULTS_FILE={tmp_result_file.name}"] if traces: arglist += ["TRACES=1"] @@ -67,6 +71,9 @@ def regression_body_with_cocotb(test_name: str, traces: bool): assert res.returncode == 0 + tree = eT.parse(tmp_result_file.name) + assert len(list(tree.iter("failure"))) == 0 + def regression_body_with_pysim(test_name: str, traces: bool, verbose: bool): traces_file = None From c89f3fa901c4015a34bac161399eef60338889a6 Mon Sep 17 00:00:00 2001 From: lekcyjna123 <34948061+lekcyjna123@users.noreply.github.com> Date: Wed, 6 Mar 2024 10:14:28 +0100 Subject: [PATCH 8/8] Apply suggestions from code review Co-authored-by: piotro888 --- test/conftest.py | 4 ++-- test/regression/conftest.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/conftest.py b/test/conftest.py index 35f09bfd3..1095fba03 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -18,13 +18,13 @@ def pytest_addoption(parser: pytest.Parser): "--coreblocks-test-name", action="store", type=str, - help="Name or regexp in flatten format pointing to test to run.", + help="Name or regexp in flatten format matching the tests to run.", ) group.addoption( "--coreblocks-test-count", action="store", type=int, - help="Number of tests to starts. If less than number of all selected tests, then starts only subset of them.", + help="Number of tests to start. If less than number of all selected tests, then starts only subset of them.", ) diff --git a/test/regression/conftest.py b/test/regression/conftest.py index ca2dc41e0..54648bbb5 100644 --- a/test/regression/conftest.py +++ b/test/regression/conftest.py @@ -34,7 +34,7 @@ def pytest_generate_tests(metafunc: pytest.Metafunc): all_tests = ( load_regression_tests() - ) # The list has to be always in the samo order (e.g. sorted) to allow for parallel testing + ) # The list has to be always in the same order (e.g. sorted) to allow for parallel testing traces = metafunc.config.getoption("coreblocks_traces") backend = metafunc.config.getoption("coreblocks_backend") verbose = bool(metafunc.config.getoption("verbose"))