From 82ecf61fb2bc2745e4464057f267ac642b2be738 Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Sun, 22 Dec 2013 18:00:40 -0800 Subject: [PATCH] Update jspahrsummers/objc-build-scripts to the latest Conflicts: script/cibuild --- script/cibuild | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/script/cibuild b/script/cibuild index 06f2b81..e9aa65a 100755 --- a/script/cibuild +++ b/script/cibuild @@ -132,21 +132,7 @@ build_scheme () sdkflag="-sdk iphonesimulator" fi - run_xctool $sdkflag -scheme "$scheme" $action | awk '{ print; } /Failed to query the list of test cases in the test bundle/ { exit 1; }' - - local awkstatus=$? - local result=${PIPESTATUS[0]} - - if [ "$awkstatus" -eq "1" ] - then - echo - echo "*** Mac application tests are currently buggy, so they have been skipped." - echo "*** See https://github.com/facebook/xctool/issues/243 for more information." - echo - return 0 - fi - - return $result + run_xctool $sdkflag -scheme "$scheme" $action } export -f build_scheme