Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ export class CeedlingAdapter implements TestAdapter {

private async getCeedlingVersion(): Promise<string> {
const result = await this.execCeedling(['version']);
const regex = new RegExp('^\\s*Ceedling::\\s*(.*)$', 'gm');
const regex = new RegExp('Ceedling => *([\d\.]*)$|Ceedling:: *([\d\.]*)$', 'gm');
const match = regex.exec(result.stdout);
if (!match) {
this.logger.error(`fail to get the ceedling version: ${util.format(result)}`);
Expand Down