Skip to content

Commit

Permalink
Update tests after build (#4148)
Browse files Browse the repository at this point in the history
* Update tests after build

* update changelog

* fix type error
  • Loading branch information
gcampbell-msft authored Nov 6, 2024
1 parent 220ac74 commit 4d381d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/cmakeProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 4d381d3

Please sign in to comment.