-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[config] Add label files for sanitizers
Add label files for supported sanitizers (address, leak, memory, thead and undefined behavior).
- Loading branch information
1 parent
08bdb27
commit 99b077a
Showing
7 changed files
with
45 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"analyzer": "asan", | ||
"labels": { | ||
"AddressSanitizer": [ | ||
"doc_url:https://clang.llvm.org/docs/AddressSanitizer.html", | ||
"severity:HIGH" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"analyzer": "lsan", | ||
"labels": { | ||
"LeakSanitizer": [ | ||
"doc_url:https://clang.llvm.org/docs/LeakSanitizer.html", | ||
"severity:HIGH" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"analyzer": "msan", | ||
"labels": { | ||
"MemorySanitizer": [ | ||
"doc_url:https://clang.llvm.org/docs/MemorySanitizer.html", | ||
"severity:HIGH" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"analyzer": "tsan", | ||
"labels": { | ||
"ThreadSanitizer": [ | ||
"doc_url:https://clang.llvm.org/docs/ThreadSanitizer.html", | ||
"severity:HIGH" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"analyzer": "ubsan", | ||
"labels": { | ||
"UndefinedBehaviorSanitizer": [ | ||
"doc_url:https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html", | ||
"severity:HIGH" | ||
] | ||
} | ||
} |