Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

COMPILE_WARNING_MATCHER/COMPILE_ERROR_MATCHER failing for relative paths #260

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/xcpretty/parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ module Warnings
# $1 = file_path
# $2 = file_name
# $3 = reason
COMPILE_WARNING_MATCHER = /^(\/.+\/(.*):.*:.*):\swarning:\s(.*)$/
COMPILE_WARNING_MATCHER = /^(.+\/(.*):.*:.*):\swarning:\s(.*)$/

# $1 = ld prefix
# $2 = warning message
Expand Down Expand Up @@ -234,7 +234,7 @@ module Errors
# $1 = file_path
# $2 = file_name
# $3 = reason
COMPILE_ERROR_MATCHER = /^(\/.+\/(.*):.*:.*):\s(?:fatal\s)?error:\s(.*)$/
COMPILE_ERROR_MATCHER = /^(.+\/(.*):.*:.*):\s(?:fatal\s)?error:\s(.*)$/

# @regex Captured groups
# $1 cursor (with whitespaces and tildes)
Expand Down