aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2015-07-20 10:01:32 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2015-07-20 10:08:31 -0700
commitb71f8fbda8696f1fc8362f37927eabf7aacfac2a (patch)
tree876852f4302dd8a755852a99a0969a95a58067fd /src/objective-c/tests
parenta307728aab0417fee8691805741158c9c9adc687 (diff)
Simplify xcodebuild’s output filter regex
Diffstat (limited to 'src/objective-c/tests')
-rwxr-xr-xsrc/objective-c/tests/run_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/tests/run_tests.sh b/src/objective-c/tests/run_tests.sh
index 87ce6d42eb..f25d7e9765 100755
--- a/src/objective-c/tests/run_tests.sh
+++ b/src/objective-c/tests/run_tests.sh
@@ -40,7 +40,7 @@ pod install
# xcodebuild is very verbose. We filter its output and tell Bash to fail if any
# element of the pipe fails.
set -o pipefail
-XCODEBUILD_FILTER='^(/.+:[0-9+:[0-9]+:.(error|warning):|fatal|===|\*\*)'
+XCODEBUILD_FILTER='(^===|^\*\*|\bfatal\b|\berror\b|\bwarning\b|\bfail)'
xcodebuild \
-workspace Tests.xcworkspace \
-scheme AllTests \