We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2f7c0 commit 632b758Copy full SHA for 632b758
1 file changed
src/ctest.ts
@@ -1889,7 +1889,9 @@ export class CTestDriver implements vscode.Disposable {
1889
if (test.children.size > 0) {
1890
const children = this.testItemCollectionToArray(test.children);
1891
for (const child of children) {
1892
- await this.getTestTargets(child, foundTarget, run);
+ if (!await this.getTestTargets(child, foundTarget, run)) {
1893
+ return false;
1894
+ }
1895
}
1896
} else {
1897
const testProgram = this.testProgram(test.id);
0 commit comments