* Update tests after build

* update changelog

* fix type error
This commit is contained in:
Garrett Campbell 2024-11-06 02:43:00 -08:00 коммит произвёл GitHub
Родитель 220ac74783
Коммит 4d381d341a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -17,6 +17,7 @@ Bug Fixes:
- Fix our setting of `isUserPreset` for presets, only set it to `true` if it's defined in a user presets file. [#4059](https://github.com/microsoft/vscode-cmake-tools/issues/4059)
- Fix issue where duplicate presets are being listed in dropdown. [#4104](https://github.com/microsoft/vscode-cmake-tools/issues/4104)
- Ensure that tests are updated after a build. [#4148](https://github.com/microsoft/vscode-cmake-tools/pull/4148)
- Fix various GCC compiler errors and GCC linker errors not showing up in Problems View [#2864](https://github.com/microsoft/vscode-cmake-tools/issues/2864)
## 1.19.52

Просмотреть файл

@ -2129,6 +2129,7 @@ export class CMakeProject {
if (fileDiags) {
populateCollection(collections.build, fileDiags);
}
await this.cTestController.refreshTests(drv!);
await this.refreshCompileDatabase(drv!.expansionOptions);
return rc === null ? -1 : rc;
}