aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2010-09-07 23:05:35 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2010-09-07 23:05:35 +0000
commit13d6b8a9e2d515de9d6b77064f69848a46a4cdeb (patch)
tree3b8b5ee65424549f651c04b660542abf5bd40489
parent3976184d34be50a1051a1018cb961b19ad61092f (diff)
[Author: dmaclach]
Turned off GTM_DISABLE_IPHONE_LAUNCH_DAEMONS by default as it is only needed in special cases, and was causing more pain than it was worth. TBR=thomasvl DELTA=5 (2 added, 0 deleted, 3 changed)
-rwxr-xr-xUnitTesting/RunIPhoneUnitTest.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/UnitTesting/RunIPhoneUnitTest.sh b/UnitTesting/RunIPhoneUnitTest.sh
index 346bdb3..fd8e305 100755
--- a/UnitTesting/RunIPhoneUnitTest.sh
+++ b/UnitTesting/RunIPhoneUnitTest.sh
@@ -60,8 +60,10 @@ GTM_DISABLE_USERDIR_SETUP=${GTM_DISABLE_USERDIR_SETUP:=0}
# GTM_DISABLE_IPHONE_LAUNCH_DAEMONS
# Controls whether or not we launch up the iPhone Launch Daemons before
# we start testing. You need Launch Daemons to test anything that interacts
-# with security.
-GTM_DISABLE_IPHONE_LAUNCH_DAEMONS=${GTM_DISABLE_IPHONE_LAUNCH_DAEMONS:=0}
+# with security. Note that it is OFF by default. Set
+# GTM_DISABLE_IPHONE_LAUNCH_DAEMONS=0 before calling this script
+# to turn it on.
+GTM_DISABLE_IPHONE_LAUNCH_DAEMONS=${GTM_DISABLE_IPHONE_LAUNCH_DAEMONS:=1}
ScriptDir=$(dirname "$(echo $0 | sed -e "s,^\([^/]\),$(pwd)/\1,")")
ScriptName=$(basename "$0")