Skip to content

Commit

Permalink
XCTest output hilighting for build panel
Browse files Browse the repository at this point in the history
  • Loading branch information
dunkelstern committed May 31, 2016
1 parent c32540b commit cc453ed
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions build_output.sublime-syntax
Expand Up @@ -22,7 +22,28 @@ contexts:
- match: ([^:]+):([0-9]+):([0-9]+):\s(error|warning):\s(.*)
captures:
1: entity.name.class filename
2: constant.numeric line
2: constant.numeric line
3: constant.numeric column
4: keyword
5: string
5: string

- match: (Test Case).*(started)
scope: comment

- match: (Test Case).*(passed).*
scope: comment

- match: (Test Case).*(failed).*
scope: keyword

- match: (Test Suite).*(passed).*
scope: entity.name.class

- match: (Test Suite).*(failed).*
scope: keyword

- match: (Executed [0-9]* test[s]?, with [1-9][0-9]* failure[s]? .*)
scope: keyword

- match: (Executed [0-9]* test[s]?, with 0 failures.*)
scope: entity.name.class

0 comments on commit cc453ed

Please sign in to comment.