|
110 | 110 | "cmake-tools.configuration.cmake.ctest.testExplorerIntegrationEnabled.description": "Určuje, jestli je povolená integrace s průzkumníkem testů. To je užitečné zakázat, pokud upřednostňujete použití jiného rozšíření pro integraci testů.", |
111 | 111 | "cmake-tools.configuration.cmake.ctest.testSuiteDelimiter.markdownDescription": "Volitelný oddělovač používaný k oddělení názvů sad testů a hierarchickému seskupení testů v Průzkumníku testů. Tento řetězec se používá v regulárních výrazech, takže pro některé oddělovače může být nutné zadat uvozovací znak. Příklady: `-` (Jeden oddělovač: `-`), `\\.|::` (Dva oddělovače: `.` nebo `::`. Poznámka: Znak `.` musí být uvozen uvozovacími znaky.)", |
112 | 112 | "cmake-tools.configuration.cmake.ctest.testSuiteDelimiterMaxOccurrence.markdownDescription": "Maximální počet použití oddělovače k rozdělení názvu testu. `0` znamená žádný limit.", |
| 113 | + "cmake-tools.configuration.cmake.ctest.failurePatterns.markdownDescription": "Regular expressions for searching CTest output for additional details about failures. All patterns are tried and test failure details from each are collected.\r\n\r\nPatterns must have at minimum one capture group to match the name of the `file` where the failure occurred. They can optionally also capture `line`, `message`, `expected`, and `actual`.\r\n\r\nFor example, to match a failure line like `path/to/file:47: text of error message`, this pattern matcher could be used:\r\n```json\r\n{\r\n \"regexp\": \"(.+):(\\\\d+): ?(.*)\",\r\n \"file\": 1,\r\n \"line\": 2,\r\n \"message\": 3\r\n}\r\n```\r\n", |
| 114 | + "cmake-tools.configuration.cmake.ctest.failurePatterns.regexp": "The regular expression to find a failure in the output.", |
| 115 | + "cmake-tools.configuration.cmake.ctest.failurePatterns.file": "The match group index of the filename. If omitted 1 is used.", |
| 116 | + "cmake-tools.configuration.cmake.ctest.failurePatterns.line": "The match group index of the failure's line. Defaults to 2.", |
| 117 | + "cmake-tools.configuration.cmake.ctest.failurePatterns.message": "The match group index of the message. Defaults to 3.", |
| 118 | + "cmake-tools.configuration.cmake.ctest.failurePatterns.actual": "The match group index of the actual test output. Defaults to undefined.", |
| 119 | + "cmake-tools.configuration.cmake.ctest.failurePatterns.expected": "The match group index of the expected test output. Defaults to undefined.", |
113 | 120 | "cmake-tools.configuration.cmake.ctest.debugLaunchTarget.description": "Název cíle z launch.json, který se spustí při ladění testu pomocí CTestu. Ve výchozím nastavení a v případě neexistujícího cíle se zobrazí výběr se všemi dostupnými cíli.", |
114 | 121 | "cmake-tools.configuration.cmake.parseBuildDiagnostics.description": "Analyzovat výstup kompilátoru z hlediska upozornění a chyb", |
115 | 122 | "cmake-tools.configuration.cmake.enabledOutputParsers.description": "Výstupní analyzátory, které se mají použít. Podporované jsou analyzátory `cmake`, `gcc` a `gnuld` pro výstup linkeru ve stylu GNULD, `msvc` pro Microsoft Visual C++, `ghs` pro kompilátor Green Hills s parametry --no_wrap_diagnostics nebo --brief_diagnostics a `diab` pro kompilátor Wind River Diab.", |
|
0 commit comments