Temporarily suppress ServiceTest.

ServiceTest appears to be causing the whole android unit_tests suite to fail in the
continuous system. Suppressing to stop the lab failure spam while continuing to investigate.
diff --git a/tests/AndroidTests/src/com/android/unit_tests/activity/ServiceTest.java b/tests/AndroidTests/src/com/android/unit_tests/activity/ServiceTest.java
index db523dc..95f6e36 100644
--- a/tests/AndroidTests/src/com/android/unit_tests/activity/ServiceTest.java
+++ b/tests/AndroidTests/src/com/android/unit_tests/activity/ServiceTest.java
@@ -27,10 +27,14 @@
 import android.os.Parcel;
 import android.test.suitebuilder.annotation.MediumTest;
 import android.test.suitebuilder.annotation.SmallTest;
+import android.test.suitebuilder.annotation.Suppress;
 import android.util.Log;
 
 // These test binders purport to support an interface whose canonical
 // interface name is ServiceTest.SERVICE_LOCAL
+// Temporarily suppress, this test is causing unit test suite run to fail
+// TODO: remove this suppress
+@Suppress
 public class ServiceTest extends ActivityTestsBase {
 
     public static final String SERVICE_LOCAL =
@@ -131,7 +135,7 @@
             mSetReporter = setReporter;
             mMonitor = !setReporter;
         }
-        
+
         void setMonitor(boolean v) {
             mMonitor = v;
         }
@@ -148,7 +152,7 @@
                 }
                 data.recycle();
             }
-            
+
             if (mMonitor) {
                 mCount++;
                 if (mStartState == STATE_START_1) {
@@ -260,7 +264,7 @@
         waitForResultOrThrow(5 * 1000, "existing connection to lose service");
 
         getContext().unbindService(conn);
-        
+
         conn = new TestConnection(true, true);
         success = false;
         try {
@@ -290,7 +294,7 @@
         waitForResultOrThrow(5 * 1000, "existing connection to lose service");
 
         getContext().unbindService(conn);
-        
+
         conn = new TestConnection(true, true);
         success = false;
         try {
@@ -318,12 +322,12 @@
         mStartState = STATE_UNBIND_ONLY;
         getContext().unbindService(conn);
         waitForResultOrThrow(5 * 1000, "existing connection to unbind service");
-        
+
         // Expect to see the service rebound.
         mStartState = STATE_REBIND;
         getContext().bindService(service, conn, 0);
         waitForResultOrThrow(5 * 1000, "existing connection to rebind service");
-        
+
         // Expect to see the service unbind and then destroyed.
         mStartState = STATE_UNBIND;
         getContext().stopService(service);