Skip to content

Commit

Permalink
Fix typo: fuzzer should enable fuzzer, not tsan (#25967)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrei Litvin <[email protected]>
  • Loading branch information
2 people authored and pull[bot] committed Dec 22, 2023
1 parent 3d991c2 commit ae47591
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build/build/targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def BuildHostFakeTarget():
target.AppendModifier("asan", use_asan=True).ExceptIfRe("-tsan")
target.AppendModifier("tsan", use_tsan=True).ExceptIfRe("-asan")
target.AppendModifier("ubsan", use_ubsan=True)
target.AppendModifier("libfuzzer", use_tsan=True).OnlyIfRe("-clang")
target.AppendModifier("libfuzzer", use_libfuzzer=True).OnlyIfRe("-clang")
target.AppendModifier('coverage', use_coverage=True).OnlyIfRe('-(chip-tool|all-clusters)')
target.AppendModifier('dmalloc', use_dmalloc=True)
target.AppendModifier('clang', use_clang=True)
Expand Down Expand Up @@ -140,7 +140,7 @@ def BuildHostTarget():
target.AppendModifier("asan", use_asan=True).ExceptIfRe("-tsan")
target.AppendModifier("tsan", use_tsan=True).ExceptIfRe("-asan")
target.AppendModifier("ubsan", use_ubsan=True)
target.AppendModifier("libfuzzer", use_tsan=True).OnlyIfRe("-clang")
target.AppendModifier("libfuzzer", use_libfuzzer=True).OnlyIfRe("-clang")
target.AppendModifier('coverage', use_coverage=True).OnlyIfRe('-(chip-tool|all-clusters)')
target.AppendModifier('dmalloc', use_dmalloc=True)
target.AppendModifier('clang', use_clang=True)
Expand Down

0 comments on commit ae47591

Please sign in to comment.