Skip to content

Commit

Permalink
Merge pull request #3471 from csordasmarton/sanitizer_label_files
Browse files Browse the repository at this point in the history
[config] Add label files for sanitizers
  • Loading branch information
bruntib authored Oct 29, 2021
2 parents 6c7c2b5 + 99b077a commit 4be1eca
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 12 deletions.
9 changes: 9 additions & 0 deletions config/labels/analyzers/asan.json
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"
]
}
}
6 changes: 0 additions & 6 deletions config/labels/analyzers/clang-tidy.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,6 @@
],
"android-comparison-in-temp-failure-retry": [

],
"AddressSanitizer": [
"severity:HIGH"
],
"boost-use-to-string": [
"profile:sensitive",
Expand Down Expand Up @@ -1143,9 +1140,6 @@
"llvmlibc-restrict-system-libc-headers": [
"severity:LOW"
],
"MemorySanitizer": [
"severity:HIGH"
],
"misc-argument-comment": [
"severity:LOW",
"profile:sensitive",
Expand Down
6 changes: 0 additions & 6 deletions config/labels/analyzers/clangsa.json
Original file line number Diff line number Diff line change
Expand Up @@ -826,12 +826,6 @@
"sei-cert:pos33-c",
"severity:MEDIUM"
],
"ThreadSanitizer": [
"severity:HIGH"
],
"UndefinedBehaviorSanitizer": [
"severity:HIGH"
],
"unix.API": [
"profile:default",
"profile:sensitive",
Expand Down
9 changes: 9 additions & 0 deletions config/labels/analyzers/lsan.json
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"
]
}
}
9 changes: 9 additions & 0 deletions config/labels/analyzers/msan.json
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"
]
}
}
9 changes: 9 additions & 0 deletions config/labels/analyzers/tsan.json
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"
]
}
}
9 changes: 9 additions & 0 deletions config/labels/analyzers/ubsan.json
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"
]
}
}

0 comments on commit 4be1eca

Please sign in to comment.