From ea54e13a69c4eef1e96095016615fdb26559ce56 Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Fri, 25 Oct 2024 13:27:37 +0100 Subject: [PATCH] Properly skip t_ccache_report when no ccache --- test_regress/driver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_regress/driver.py b/test_regress/driver.py index 7d325de723..71d3ed4d0e 100755 --- a/test_regress/driver.py +++ b/test_regress/driver.py @@ -2404,8 +2404,8 @@ def inline_checks(self) -> None: self.error(self.top_filename + ":" + str(flineno) + ": Unknown CHECK request: " + line) - @staticmethod - def cfg_with_ccache() -> bool: + @staticproperty + def cfg_with_ccache() -> bool: # pylint: disable=no-method-argument if VlTest._cached_cfg_with_ccache is None: mkf = VlTest._file_contents_static(os.environ['VERILATOR_ROOT'] + "/include/verilated.mk")