Skip to content

Commit

Permalink
Properly skip t_ccache_report when no ccache
Browse files Browse the repository at this point in the history
  • Loading branch information
gezalore committed Oct 25, 2024
1 parent 83081aa commit ea54e13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_regress/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit ea54e13

Please sign in to comment.