Merge fd2aa4a2d13bccd68d6b69d17405217879533b38 into 9e120dd99b0fbad1c065f686657e914e76bd7b72

This commit is contained in:
Teoh Han Hui 2022-01-13 14:43:23 +00:00 committed by GitHub
commit de8d9ef62c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
{
"problemMatcher": [
{
"owner": "rust",
"owner": "rust-diagnostic",
"pattern": [
{
"regexp": "^(warning|warn|error)(\\[(.*)\\])?: (.*)$",
@ -16,6 +16,27 @@
"column": 4
}
]
},
{
"owner": "rust-panic",
"pattern": [
{
"regexp": "^(thread\\s+'[^']+'\\s+panicked\\s+at\\s+'[^']+(?:'|$))(?:,\\s+([^/\\\\][^:]+):(\\d+):(\\d+))?",
"file": 2,
"line": 3,
"column": 4,
"message": 1
}
]
},
{
"owner": "rust-test-failure",
"pattern": [
{
"regexp": "^(test\\s+\\w+\\s+\\.{3}\\s+FAILED)",
"message": 1
}
]
}
]
}