Skip to content

Commit

Permalink
Fix detection of crashed tests
Browse files Browse the repository at this point in the history
(See #47)
  • Loading branch information
fredericbonnet committed Jan 18, 2022
1 parent ad0439d commit 97b37d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmake-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const CTEST_PASSED_RE = /^\s*\d+\/\d+ Test\s+#(\d+): (\S+).*\.\.\.+ Passed/;

/** Regexp for test failed line */
const CTEST_FAILED_RE =
/^\s*\d+\/\d+ Test\s+#(\d+): (\S+).*\.\.\.+\*\*\*Failed/;
/^\s*\d+\/\d+ Test\s+#(\d+): (\S+).*\.\.\.+\*\*\*/;

/** Generic test event */
export type CmakeTestEvent =
Expand Down

0 comments on commit 97b37d4

Please sign in to comment.