Skip to content

Commit

Permalink
Merge pull request #5867 from pmem/valgrind-none
Browse files Browse the repository at this point in the history
test: force-enable to accept none value (fix)
  • Loading branch information
janekmi authored Aug 21, 2023
2 parents 479a965 + d919cc4 commit 24ad25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/unittest/valgrind.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class Valgrind:
"""

def __init__(self, tool, cwd, testnum, force_enable):
self.tool = NONE if tool is None else tool
self.tool = NONE if tool is None or tool == 'none' else tool
self.tool_name = self.tool.name.lower()
self.cwd = cwd

Expand Down

0 comments on commit 24ad25f

Please sign in to comment.