cheets_GTS: Remove old code for 4.1r1 and some clean up.

* The accumualtive_count mode was needed only for GTS 4.1 r1.
  We don't need it anymore for R59 or after.

* Ditto for --skip-device-info

* Use more code from the parent class shared with cheets_CTS_N.

BUG=None
TEST=./utils/unittest_suite.py server.cros.tradefed_test_unittest
TEST=test_that cheets_GTS.4.1_r2.GtsGmscoreHostTestCases

Change-Id: I24d744e50951c79b5fc4e36942a7116e28137c8b
Reviewed-on: https://chromium-review.googlesource.com/522464
Commit-Ready: Kazuhiro Inaba <kinaba@chromium.org>
Tested-by: Kazuhiro Inaba <kinaba@chromium.org>
Reviewed-by: Ilja H. Friedel <ihf@chromium.org>
diff --git a/server/cros/tradefed_test.py b/server/cros/tradefed_test.py
index a5b5828..6011dd3 100644
--- a/server/cros/tradefed_test.py
+++ b/server/cros/tradefed_test.py
@@ -194,12 +194,10 @@
         os.chdir(current)
 
 
-def parse_tradefed_v2_result(result, accumulative_count=False, waivers=None):
+def parse_tradefed_v2_result(result, waivers=None):
     """Check the result from the tradefed-v2 output.
 
     @param result: The result stdout string from the tradefed command.
-    @param accumulative_count: set True if using an old version of tradefed
-                               that prints test count in accumulative way.
     @param waivers: a set() of tests which are permitted to fail.
     @return 5-tuple (tests, passed, failed, notexecuted, waived)
     """
@@ -253,15 +251,10 @@
            # iteration by running "0 tests, 0 passed, ...". Do not count
            # that in.
            if ntest > 0:
-               if accumulative_count:
-                   total_test[abi] = ntest
-                   total_pass[abi] = npass
-                   total_fail[abi] = nfail
-               else:
-                   total_test[abi] = (total_test.get(abi, 0) + ntest -
-                       last_notexec.get(abi, 0))
-                   total_pass[abi] = total_pass.get(abi, 0) + npass
-                   total_fail[abi] = total_fail.get(abi, 0) + nfail
+               total_test[abi] = (total_test.get(abi, 0) + ntest -
+                   last_notexec.get(abi, 0))
+               total_pass[abi] = total_pass.get(abi, 0) + npass
+               total_fail[abi] = total_fail.get(abi, 0) + nfail
                last_notexec[abi] = nnotexec
            abi = None
 
@@ -786,7 +779,7 @@
                      datetime_id)
         return datetime_id
 
-    def _parse_tradefed_datetime_N(self, result, summary=None):
+    def _parse_tradefed_datetime_v2(self, result, summary=None):
         """Get the tradefed provided result ID consisting of a datetime stamp.
 
         Unfortunately we are unable to tell tradefed where to store the results.
@@ -866,19 +859,16 @@
                                  'become inconsistent.')
         return (tests, passed, failed, not_executed, waived)
 
-    def _parse_result_v2(self, result, accumulative_count=False, waivers=None):
+    def _parse_result_v2(self, result, waivers=None):
         """Check the result from the tradefed-v2 output.
 
         This extracts the test pass/fail/executed list from the output of
         tradefed. It is up to the caller to handle inconsistencies.
 
         @param result: The result object from utils.run.
-        @param accumulative_count: set True if using an old version of tradefed
-                                   that prints test count in accumulative way.
         @param waivers: a set() of tests which are permitted to fail.
         """
-        return parse_tradefed_v2_result(result.stdout, accumulative_count,
-                                        waivers)
+        return parse_tradefed_v2_result(result.stdout, waivers)
 
     def _collect_logs(self, repository, datetime, destination):
         """Collects the tradefed logs.
diff --git a/server/cros/tradefed_test_unittest.py b/server/cros/tradefed_test_unittest.py
index 191df64..53de667 100644
--- a/server/cros/tradefed_test_unittest.py
+++ b/server/cros/tradefed_test_unittest.py
@@ -20,32 +20,10 @@
     def test_parse_tradefed_v2_result(self):
         """Test for parse_tradefed_v2_result."""
 
-        cts_waivers = set([
+        waivers = set([
             'android.app.cts.SystemFeaturesTest#testUsbAccessory',
             'android.widget.cts.GridViewTest#testSetNumColumns',
         ])
-        gts_waivers = set([
-            'com.google.android.gts.multiuser.RestrictedProfileHostTest'
-                '#testRestrictedProfile',
-        ])
-
-        # b/36288975
-        # http://pantheon/storage/browser/chromeos-autotest-results/106523703-chromeos-test/
-        # For a single-test chunk, tradefed prints "1 test", not "1 tests".
-        self.assertEquals((178, 172, 6, 0, 2),
-            tradefed_test.parse_tradefed_v2_result(
-                _load_data('GtsGmscoreHostTestCases.txt'),
-                accumulative_count=True,
-                waivers=gts_waivers))
-
-        # b/35605415
-        # http://pantheon/storage/browser/chromeos-autotest-results/106915033-chromeos-test/
-        # GTS: Tradefed may split a module to multiple chunks.
-        self.assertEquals((4, 4, 0, 0, 0),
-            tradefed_test.parse_tradefed_v2_result(
-                _load_data('GtsSearchHostTestCases.txt'),
-                accumulative_count=True,
-                waivers=gts_waivers))
 
         # b/35605415 and b/36520623
         # http://pantheon/storage/browser/chromeos-autotest-results/108103986-chromeos-test/
@@ -54,8 +32,7 @@
         self.assertEquals((35, 33, 2, 0, 0),
             tradefed_test.parse_tradefed_v2_result(
                 _load_data('CtsHostsideNetworkTests.txt'),
-                accumulative_count=False,
-                waivers=cts_waivers))
+                waivers=waivers))
 
         # b/35530394
         # http://pantheon/storage/browser/chromeos-autotest-results/108291418-chromeos-test/
@@ -63,8 +40,7 @@
         self.assertEquals((1395, 1386, 9, 0, 0),
             tradefed_test.parse_tradefed_v2_result(
                 _load_data('CtsMediaTestCases.txt'),
-                accumulative_count=False,
-                waivers=cts_waivers))
+                waivers=waivers))
 
         # b/35530394
         # http://pantheon/storage/browser/chromeos-autotest-results/106540705-chromeos-test/
@@ -72,8 +48,7 @@
         self.assertEquals((110, 27, 1, 82, 0),
             tradefed_test.parse_tradefed_v2_result(
                 _load_data('CtsSecurityTestCases.txt'),
-                accumulative_count=False,
-                waivers=cts_waivers))
+                waivers=waivers))
 
         # b/36629187
         # http://pantheon/storage/browser/chromeos-autotest-results/108855595-chromeos-test/
@@ -81,8 +56,7 @@
         self.assertEquals((739, 573, 3, 163, 0),
             tradefed_test.parse_tradefed_v2_result(
                 _load_data('CtsViewTestCases.txt'),
-                accumulative_count=False,
-                waivers=cts_waivers))
+                waivers=waivers))
 
         # b/36375690
         # http://pantheon/storage/browser/chromeos-autotest-results/109040174-chromeos-test/
@@ -90,14 +64,12 @@
         self.assertEquals((321, 316, 5, 0, 1),
             tradefed_test.parse_tradefed_v2_result(
                 _load_data('CtsAppTestCases.txt'),
-                accumulative_count=False,
-                waivers=cts_waivers))
+                waivers=waivers))
         # ... and the retry of the above failing iteration.
         self.assertEquals((5, 1, 4, 0, 1),
             tradefed_test.parse_tradefed_v2_result(
                 _load_data('CtsAppTestCases-retry.txt'),
-                accumulative_count=False,
-                waivers=cts_waivers))
+                waivers=waivers))
 
         # http://pantheon/storage/browser/chromeos-autotest-results/116875512-chromeos-test/
         # When a test case crashed during teardown, tradefed prints the "fail"
@@ -105,8 +77,7 @@
         self.assertEquals((1194, 1185, 10, 0, 2),
             tradefed_test.parse_tradefed_v2_result(
                 _load_data('CtsWidgetTestCases.txt'),
-                accumulative_count=False,
-                waivers=cts_waivers))
+                waivers=waivers))
 
         # http://pantheon/storage/browser/chromeos-autotest-results/117914707-chromeos-test/
         # When a test case unrecoverably crashed during teardown, tradefed
@@ -114,8 +85,7 @@
         self.assertEquals((71, 70, 1, 0, 0),
             tradefed_test.parse_tradefed_v2_result(
                 _load_data('CtsPrintTestCases.txt'),
-                accumulative_count=False,
-                waivers=cts_waivers))
+                waivers=waivers))
 
 if __name__ == '__main__':
     unittest.main()
diff --git a/server/cros/tradefed_test_unittest_data/GtsGmscoreHostTestCases.txt b/server/cros/tradefed_test_unittest_data/GtsGmscoreHostTestCases.txt
deleted file mode 100644
index 919ee3b..0000000
--- a/server/cros/tradefed_test_unittest_data/GtsGmscoreHostTestCases.txt
+++ /dev/null
@@ -1,3517 +0,0 @@
-03-13 21:02:05 I/ModuleRepo: chromeos2-row4-rack7-host11:22 running 2 modules, expected to complete in 2m 0s
-03-13 21:02:05 I/CompatibilityTest: Starting 2 modules on chromeos2-row4-rack7-host11:22
-03-13 21:02:05 D/ConfigurationFactory: Loading configuration 'system-status-checkers'
-03-13 21:02:05 I/CompatibilityTest: Running system status checker before module execution: GtsGmscoreHostTestCases
-03-13 21:02:05 D/ModuleDef: Preparer: StubTargetPreparer
-03-13 21:02:05 D/TargetPreparer: skipping target prepare step
-03-13 21:02:05 D/ModuleDef: Test: JarHostTest
-03-13 21:02:05 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.provider.ProviderHostTest, 1)
-03-13 21:02:05 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Starting x86 GtsGmscoreHostTestCases with 1 test
-03-13 21:02:05 D/DeviceTestCase: Running com.google.android.gts.provider.ProviderHostTest#testAll()
-03-13 21:02:05 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.provider.ProviderHostTest#testAll)
-03-13 21:02:06 D/GtsGmsCoreProviderTestApp.apk: Uploading GtsGmsCoreProviderTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:07 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:09 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.provider.ContactsMetadataProviderTest com.google.android.gts.provider/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:02:10 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testBulkInsert: PASSED
-03-13 21:02:10 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testCallerCheck: PASSED
-03-13 21:02:10 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testInsert_withNonExistingAccount: PASSED
-03-13 21:02:10 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testInsert_withUnknownUrl: PASSED
-03-13 21:02:10 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testQuery_withUnknownUrl: PASSED
-03-13 21:02:10 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testUpdate_withUnknownUrl: PASSED
-03-13 21:02:10 D/TestDevice: Uninstalling com.google.android.gts.provider
-03-13 21:02:11 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.provider.ProviderHostTest#testAll, {})
-03-13 21:02:11 I/ConsoleReporter: [1/1 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.provider.ProviderHostTest#testAll pass
-03-13 21:02:11 D/ModuleListener: ModuleListener.testRunEnded(6171, {})
-03-13 21:02:11 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 6s. 1 passed, 0 failed, 0 not executed
-03-13 21:02:11 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.multiuser.RestrictedProfileHostTest, 1)
-03-13 21:02:11 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 2 tests
-03-13 21:02:11 D/DeviceTestCase: Running com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile()
-03-13 21:02:11 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile)
-03-13 21:02:13 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:02:13 I/XtsHostTestBase: Device doesn't have required feature android.hardware.telephony. Tests won't run.
-03-13 21:02:14 I/RestrictedProfileHostTest: Output for command am get-current-user: 0
-
-03-13 21:02:15 I/RestrictedProfileHostTest: Output for command am get-current-user: 0
-
-03-13 21:02:16 I/RestrictedProfileHostTest: Output for command pm create-user --profileOf 0 --restricted TestProfile_1489464135522: Error: couldn't create User.
-
-03-13 21:02:16 D/ModuleListener: ModuleListener.testFailed(com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile, junit.framework.ComparisonFailure: Error: couldn't create User.
- expected:<[Success]:> but was:<[Error]:>
-	at junit.framework.Assert.assertEquals(Assert.java:85)
-	at com.google.android.gts.multiuser.RestrictedProfileHostTest.createRestrictedProfile(RestrictedProfileHostTest.java:92)
-	at com.google.android.gts.multiuser.RestrictedProfileHostTest.setUp(RestrictedProfileHostTest.java:45)
-	at junit.framework.TestCase.runBare(TestCase.java:132)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-)
-03-13 21:02:16 I/ConsoleReporter: [2/2 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile fail: junit.framework.ComparisonFailure: Error: couldn't create User.
- expected:<[Success]:> but was:<[Error]:>
-	at junit.framework.Assert.assertEquals(Assert.java:85)
-	at com.google.android.gts.multiuser.RestrictedProfileHostTest.createRestrictedProfile(RestrictedProfileHostTest.java:92)
-	at com.google.android.gts.multiuser.RestrictedProfileHostTest.setUp(RestrictedProfileHostTest.java:45)
-	at junit.framework.TestCase.runBare(TestCase.java:132)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-
-03-13 21:02:16 I/FailureListener: FailureListener.testFailed com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile false false false
-03-13 21:02:16 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile, {})
-03-13 21:02:16 D/ModuleListener: ModuleListener.testRunEnded(4662, {})
-03-13 21:02:16 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 4s. 1 passed, 1 failed, 0 not executed
-03-13 21:02:16 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.cast.VirtualDisplayHostTest, 1)
-03-13 21:02:16 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 3 tests
-03-13 21:02:16 D/DeviceTestCase: Running com.google.android.gts.cast.VirtualDisplayHostTest#testTestPrivateVirtualDisplay()
-03-13 21:02:16 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.cast.VirtualDisplayHostTest#testTestPrivateVirtualDisplay)
-03-13 21:02:17 D/GtsGmsCoreCastTestApp.apk: Uploading GtsGmsCoreCastTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:18 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:19 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.cast.VirtualDisplayTest#testPrivateVirtualDisplay com.google.android.gts.cast/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:02:21 I/XtsHostTestBase: Test com.google.android.gts.cast.VirtualDisplayTest#testPrivateVirtualDisplay: PASSED
-03-13 21:02:21 D/TestDevice: Uninstalling com.google.android.gts.cast
-03-13 21:02:22 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.cast.VirtualDisplayHostTest#testTestPrivateVirtualDisplay, {})
-03-13 21:02:22 I/ConsoleReporter: [3/3 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.cast.VirtualDisplayHostTest#testTestPrivateVirtualDisplay pass
-03-13 21:02:22 D/ModuleListener: ModuleListener.testRunEnded(5975, {})
-03-13 21:02:22 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 5s. 2 passed, 1 failed, 0 not executed
-03-13 21:02:22 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.cast.RemoteSubmixHostTest, 1)
-03-13 21:02:22 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 4 tests
-03-13 21:02:22 D/DeviceTestCase: Running com.google.android.gts.cast.RemoteSubmixHostTest#testRecordFromRemoteSubmix()
-03-13 21:02:22 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.cast.RemoteSubmixHostTest#testRecordFromRemoteSubmix)
-03-13 21:02:23 D/GtsGmsCoreCastTestApp.apk: Uploading GtsGmsCoreCastTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:23 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:25 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.cast.RemoteSubmixTest#testRecordFromRemoteSubmix com.google.android.gts.cast/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:02:28 I/XtsHostTestBase: Test com.google.android.gts.cast.RemoteSubmixTest#testRecordFromRemoteSubmix: PASSED
-03-13 21:02:28 D/TestDevice: Uninstalling com.google.android.gts.cast
-03-13 21:02:29 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.cast.RemoteSubmixHostTest#testRecordFromRemoteSubmix, {})
-03-13 21:02:29 I/ConsoleReporter: [4/4 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.cast.RemoteSubmixHostTest#testRecordFromRemoteSubmix pass
-03-13 21:02:29 D/ModuleListener: ModuleListener.testRunEnded(6952, {})
-03-13 21:02:29 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 6s. 3 passed, 1 failed, 0 not executed
-03-13 21:02:29 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.phone.PhoneHostTest, 1)
-03-13 21:02:29 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 5 tests
-03-13 21:02:29 D/DeviceTestCase: Running com.google.android.gts.phone.PhoneHostTest#testTestIsPotentialLocalEmergencyNumber()
-03-13 21:02:29 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.phone.PhoneHostTest#testTestIsPotentialLocalEmergencyNumber)
-03-13 21:02:30 D/GtsGmsCorePhoneTestApp.apk: Uploading GtsGmsCorePhoneTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:30 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:32 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.phone.PhoneNumberUtilsTest#testIsPotentialLocalEmergencyNumber com.google.android.gts.phone/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:02:33 I/XtsHostTestBase: Test com.google.android.gts.phone.PhoneNumberUtilsTest#testIsPotentialLocalEmergencyNumber: PASSED
-03-13 21:02:33 D/TestDevice: Uninstalling com.google.android.gts.phone
-03-13 21:02:34 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.phone.PhoneHostTest#testTestIsPotentialLocalEmergencyNumber, {})
-03-13 21:02:34 I/ConsoleReporter: [5/5 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.phone.PhoneHostTest#testTestIsPotentialLocalEmergencyNumber pass
-03-13 21:02:34 D/ModuleListener: ModuleListener.testRunEnded(4963, {})
-03-13 21:02:34 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 4s. 4 passed, 1 failed, 0 not executed
-03-13 21:02:34 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.audio.AudioHostTest, 4)
-03-13 21:02:34 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 9 tests
-03-13 21:02:34 D/DeviceTestCase: Running com.google.android.gts.audio.AudioHostTest#testTwoChannelCapturing()
-03-13 21:02:34 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.audio.AudioHostTest#testTwoChannelCapturing)
-03-13 21:02:35 D/GtsGmsCoreAudioTestApp.apk: Uploading GtsGmsCoreAudioTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:35 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:37 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.audio.AudioPolicyTest#testTwoChannelCapturing com.google.android.gts.audio/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:02:39 I/XtsHostTestBase: Test com.google.android.gts.audio.AudioPolicyTest#testTwoChannelCapturing: PASSED
-03-13 21:02:39 D/TestDevice: Uninstalling GtsGmsCoreAudioTestApp.apk
-03-13 21:02:40 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.audio.AudioHostTest#testTwoChannelCapturing, {})
-03-13 21:02:40 I/ConsoleReporter: [6/9 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.audio.AudioHostTest#testTwoChannelCapturing pass
-03-13 21:02:40 D/DeviceTestCase: Running com.google.android.gts.audio.AudioHostTest#testFixedVolumeRemoteSubmixSetup()
-03-13 21:02:40 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.audio.AudioHostTest#testFixedVolumeRemoteSubmixSetup)
-03-13 21:02:41 D/GtsGmsCoreAudioTestApp.apk: Uploading GtsGmsCoreAudioTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:41 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:44 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.audio.AudioCaptureTest#testFixedVolumeRemoteSubmixSetup com.google.android.gts.audio/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:02:48 I/XtsHostTestBase: Test com.google.android.gts.audio.AudioCaptureTest#testFixedVolumeRemoteSubmixSetup: PASSED
-03-13 21:02:48 D/TestDevice: Uninstalling GtsGmsCoreAudioTestApp.apk
-03-13 21:02:48 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.audio.AudioHostTest#testFixedVolumeRemoteSubmixSetup, {})
-03-13 21:02:48 I/ConsoleReporter: [7/9 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.audio.AudioHostTest#testFixedVolumeRemoteSubmixSetup pass
-03-13 21:02:48 D/DeviceTestCase: Running com.google.android.gts.audio.AudioHostTest#testMixByUidCapturing()
-03-13 21:02:48 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.audio.AudioHostTest#testMixByUidCapturing)
-03-13 21:02:50 D/GtsGmsCoreAudioTestApp.apk: Uploading GtsGmsCoreAudioTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:50 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:52 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.audio.AudioPolicyTest#testMixByUidCapturing com.google.android.gts.audio/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:02:55 I/XtsHostTestBase: Test com.google.android.gts.audio.AudioPolicyTest#testMixByUidCapturing: PASSED
-03-13 21:02:55 D/TestDevice: Uninstalling GtsGmsCoreAudioTestApp.apk
-03-13 21:02:56 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.audio.AudioHostTest#testMixByUidCapturing, {})
-03-13 21:02:56 I/ConsoleReporter: [8/9 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.audio.AudioHostTest#testMixByUidCapturing pass
-03-13 21:02:56 D/DeviceTestCase: Running com.google.android.gts.audio.AudioHostTest#testFocusChangeMediaToGuidance()
-03-13 21:02:56 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.audio.AudioHostTest#testFocusChangeMediaToGuidance)
-03-13 21:02:57 D/GtsGmsCoreAudioTestApp.apk: Uploading GtsGmsCoreAudioTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:57 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:02:59 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.audio.AudioPolicyTest#testFocusChangeMediaToGuidance com.google.android.gts.audio/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:03:00 I/XtsHostTestBase: Test com.google.android.gts.audio.AudioPolicyTest#testFocusChangeMediaToGuidance: PASSED
-03-13 21:03:00 D/TestDevice: Uninstalling GtsGmsCoreAudioTestApp.apk
-03-13 21:03:01 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.audio.AudioHostTest#testFocusChangeMediaToGuidance, {})
-03-13 21:03:01 I/ConsoleReporter: [9/9 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.audio.AudioHostTest#testFocusChangeMediaToGuidance pass
-03-13 21:03:01 D/ModuleListener: ModuleListener.testRunEnded(27276, {})
-03-13 21:03:01 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 27s. 8 passed, 1 failed, 0 not executed
-03-13 21:03:01 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.power.PowerHostTest, 1)
-03-13 21:03:01 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 10 tests
-03-13 21:03:01 D/DeviceTestCase: Running com.google.android.gts.power.PowerHostTest#testTestUserActivity()
-03-13 21:03:01 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.power.PowerHostTest#testTestUserActivity)
-03-13 21:03:03 D/GtsGmsCorePowerTestApp.apk: Uploading GtsGmsCorePowerTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:03:03 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:03:05 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.power.PowerManagerTest#testUserActivity com.google.android.gts.power/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:03:06 I/XtsHostTestBase: Test com.google.android.gts.power.PowerManagerTest#testUserActivity: PASSED
-03-13 21:03:06 D/TestDevice: Uninstalling com.google.android.gts.power
-03-13 21:03:07 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.power.PowerHostTest#testTestUserActivity, {})
-03-13 21:03:07 I/ConsoleReporter: [10/10 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.power.PowerHostTest#testTestUserActivity pass
-03-13 21:03:07 D/ModuleListener: ModuleListener.testRunEnded(5620, {})
-03-13 21:03:07 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 5s. 9 passed, 1 failed, 0 not executed
-03-13 21:03:07 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.persistentdata.PersistentDataHostTest, 3)
-03-13 21:03:07 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 13 tests
-03-13 21:03:07 D/DeviceTestCase: Running com.google.android.gts.persistentdata.PersistentDataHostTest#testTestOverwriteBlock()
-03-13 21:03:07 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestOverwriteBlock)
-03-13 21:03:08 D/GtsGmsCorePersistentDataTestApp.apk: Uploading GtsGmsCorePersistentDataTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:03:08 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:03:10 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.persistentdata.PersistentDataBlockTest#testOverwriteBlock com.google.android.gts.persistentdata/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:03:11 I/XtsHostTestBase: Test com.google.android.gts.persistentdata.PersistentDataBlockTest#testOverwriteBlock: PASSED
-03-13 21:03:11 D/TestDevice: Uninstalling com.google.android.gts.persistentdata
-03-13 21:03:12 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestOverwriteBlock, {})
-03-13 21:03:12 I/ConsoleReporter: [11/13 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.persistentdata.PersistentDataHostTest#testTestOverwriteBlock pass
-03-13 21:03:12 D/DeviceTestCase: Running com.google.android.gts.persistentdata.PersistentDataHostTest#testTestWriteReadBlock()
-03-13 21:03:12 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestWriteReadBlock)
-03-13 21:03:13 D/GtsGmsCorePersistentDataTestApp.apk: Uploading GtsGmsCorePersistentDataTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:03:13 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:03:15 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.persistentdata.PersistentDataBlockTest#testWriteReadBlock com.google.android.gts.persistentdata/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:03:16 I/XtsHostTestBase: Test com.google.android.gts.persistentdata.PersistentDataBlockTest#testWriteReadBlock: PASSED
-03-13 21:03:16 D/TestDevice: Uninstalling com.google.android.gts.persistentdata
-03-13 21:03:17 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestWriteReadBlock, {})
-03-13 21:03:17 I/ConsoleReporter: [12/13 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.persistentdata.PersistentDataHostTest#testTestWriteReadBlock pass
-03-13 21:03:17 D/DeviceTestCase: Running com.google.android.gts.persistentdata.PersistentDataHostTest#testTestGetFlashLockState()
-03-13 21:03:17 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestGetFlashLockState)
-03-13 21:03:19 D/GtsGmsCorePersistentDataTestApp.apk: Uploading GtsGmsCorePersistentDataTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:03:19 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:03:21 D/TestDevice: Uninstalling com.google.android.gts.persistentdata
-03-13 21:03:22 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestGetFlashLockState, {})
-03-13 21:03:22 I/ConsoleReporter: [13/13 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.persistentdata.PersistentDataHostTest#testTestGetFlashLockState pass
-03-13 21:03:22 D/ModuleListener: ModuleListener.testRunEnded(14911, {})
-03-13 21:03:22 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 14s. 12 passed, 1 failed, 0 not executed
-03-13 21:03:22 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.telecom.TelecomHostTest, 11)
-03-13 21:03:22 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 24 tests
-03-13 21:03:22 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestStateCallbacks()
-03-13 21:03:22 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestStateCallbacks)
-03-13 21:03:22 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestStateCallbacks, {})
-03-13 21:03:22 I/ConsoleReporter: [14/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestStateCallbacks pass
-03-13 21:03:22 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestFailedState()
-03-13 21:03:22 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestFailedState)
-03-13 21:03:23 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestFailedState, {})
-03-13 21:03:23 I/ConsoleReporter: [15/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestFailedState pass
-03-13 21:03:23 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestCanceledState()
-03-13 21:03:23 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestCanceledState)
-03-13 21:03:24 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestCanceledState, {})
-03-13 21:03:24 I/ConsoleReporter: [16/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestCanceledState pass
-03-13 21:03:24 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_AddNewOutgoingCallAndThenDisconnect()
-03-13 21:03:24 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_AddNewOutgoingCallAndThenDisconnect)
-03-13 21:03:25 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_AddNewOutgoingCallAndThenDisconnect, {})
-03-13 21:03:25 I/ConsoleReporter: [17/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_AddNewOutgoingCallAndThenDisconnect pass
-03-13 21:03:25 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_MuteAndUnmutePhone()
-03-13 21:03:25 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_MuteAndUnmutePhone)
-03-13 21:03:25 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_MuteAndUnmutePhone, {})
-03-13 21:03:25 I/ConsoleReporter: [18/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_MuteAndUnmutePhone pass
-03-13 21:03:25 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_SwitchAudioRoutes()
-03-13 21:03:25 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_SwitchAudioRoutes)
-03-13 21:03:26 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_SwitchAudioRoutes, {})
-03-13 21:03:26 I/ConsoleReporter: [19/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_SwitchAudioRoutes pass
-03-13 21:03:26 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_DtmfTones()
-03-13 21:03:26 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_DtmfTones)
-03-13 21:03:27 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_DtmfTones, {})
-03-13 21:03:27 I/ConsoleReporter: [20/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_DtmfTones pass
-03-13 21:03:27 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_HoldAndUnholdCall()
-03-13 21:03:27 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_HoldAndUnholdCall)
-03-13 21:03:28 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_HoldAndUnholdCall, {})
-03-13 21:03:28 I/ConsoleReporter: [21/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_HoldAndUnholdCall pass
-03-13 21:03:28 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestTelecomIsPreinstalledAndSystem()
-03-13 21:03:28 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestTelecomIsPreinstalledAndSystem)
-03-13 21:03:28 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestTelecomIsPreinstalledAndSystem, {})
-03-13 21:03:28 I/ConsoleReporter: [22/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestTelecomIsPreinstalledAndSystem pass
-03-13 21:03:28 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestTelecomHandlesCallIntents()
-03-13 21:03:28 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestTelecomHandlesCallIntents)
-03-13 21:03:29 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestTelecomHandlesCallIntents, {})
-03-13 21:03:29 I/ConsoleReporter: [23/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestTelecomHandlesCallIntents pass
-03-13 21:03:29 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestTelephonyCall_bindsToInCallServiceAndAddsCall()
-03-13 21:03:29 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestTelephonyCall_bindsToInCallServiceAndAddsCall)
-03-13 21:03:30 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestTelephonyCall_bindsToInCallServiceAndAddsCall, {})
-03-13 21:03:30 I/ConsoleReporter: [24/24 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestTelephonyCall_bindsToInCallServiceAndAddsCall pass
-03-13 21:03:30 D/ModuleListener: ModuleListener.testRunEnded(8540, {})
-03-13 21:03:30 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 8s. 23 passed, 1 failed, 0 not executed
-03-13 21:03:30 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.devicepolicy.ManagedProfileTest, 1)
-03-13 21:03:30 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 25 tests
-03-13 21:03:30 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.ManagedProfileTest#testManagedProfile()
-03-13 21:03:30 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.ManagedProfileTest#testManagedProfile)
-03-13 21:03:32 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:32 I/XtsHostTestBase: Device doesn't have required feature android.software.managed_users. Tests won't run.
-03-13 21:03:32 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.ManagedProfileTest#testManagedProfile, {})
-03-13 21:03:32 I/ConsoleReporter: [25/25 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.ManagedProfileTest#testManagedProfile pass
-03-13 21:03:32 D/ModuleListener: ModuleListener.testRunEnded(2340, {})
-03-13 21:03:32 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 2s. 24 passed, 1 failed, 0 not executed
-03-13 21:03:32 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest, 13)
-03-13 21:03:32 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 38 tests
-03-13 21:03:32 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testHasUserRestriction()
-03-13 21:03:32 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testHasUserRestriction)
-03-13 21:03:35 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:35 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:35 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testHasUserRestriction, {})
-03-13 21:03:35 I/ConsoleReporter: [26/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testHasUserRestriction pass
-03-13 21:03:35 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testWipeData_disallowFactoryReset()
-03-13 21:03:35 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testWipeData_disallowFactoryReset)
-03-13 21:03:37 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:37 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:37 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testWipeData_disallowFactoryReset, {})
-03-13 21:03:37 I/ConsoleReporter: [27/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testWipeData_disallowFactoryReset pass
-03-13 21:03:37 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testDisallowShareLocation()
-03-13 21:03:37 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testDisallowShareLocation)
-03-13 21:03:39 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:39 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:39 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testDisallowShareLocation, {})
-03-13 21:03:39 I/ConsoleReporter: [28/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testDisallowShareLocation pass
-03-13 21:03:39 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testRebootWipeUserData_disallowFactoryReset()
-03-13 21:03:39 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testRebootWipeUserData_disallowFactoryReset)
-03-13 21:03:42 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:42 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:42 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testRebootWipeUserData_disallowFactoryReset, {})
-03-13 21:03:42 I/ConsoleReporter: [29/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testRebootWipeUserData_disallowFactoryReset pass
-03-13 21:03:42 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testInstallCaCert_disallowConfigCredentials()
-03-13 21:03:42 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testInstallCaCert_disallowConfigCredentials)
-03-13 21:03:44 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:44 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:44 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testInstallCaCert_disallowConfigCredentials, {})
-03-13 21:03:44 I/ConsoleReporter: [30/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testInstallCaCert_disallowConfigCredentials pass
-03-13 21:03:44 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testUninstallCaCert_disallowConfigCredentials()
-03-13 21:03:44 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testUninstallCaCert_disallowConfigCredentials)
-03-13 21:03:46 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:46 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:46 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testUninstallCaCert_disallowConfigCredentials, {})
-03-13 21:03:46 I/ConsoleReporter: [31/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testUninstallCaCert_disallowConfigCredentials pass
-03-13 21:03:46 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetWifiApEnabled_disallowConfigTethering()
-03-13 21:03:46 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetWifiApEnabled_disallowConfigTethering)
-03-13 21:03:49 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:49 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:49 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetWifiApEnabled_disallowConfigTethering, {})
-03-13 21:03:49 I/ConsoleReporter: [32/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetWifiApEnabled_disallowConfigTethering pass
-03-13 21:03:49 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetBluetoothTethering_disallowConfigTethering()
-03-13 21:03:49 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetBluetoothTethering_disallowConfigTethering)
-03-13 21:03:51 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:51 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:51 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetBluetoothTethering_disallowConfigTethering, {})
-03-13 21:03:51 I/ConsoleReporter: [33/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetBluetoothTethering_disallowConfigTethering pass
-03-13 21:03:51 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetUsbTethering_disallowConfigTethering()
-03-13 21:03:51 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetUsbTethering_disallowConfigTethering)
-03-13 21:03:53 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:53 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:53 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetUsbTethering_disallowConfigTethering, {})
-03-13 21:03:53 I/ConsoleReporter: [34/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetUsbTethering_disallowConfigTethering pass
-03-13 21:03:53 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testIsTetheringSupported_disallowConfigTethering()
-03-13 21:03:53 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testIsTetheringSupported_disallowConfigTethering)
-03-13 21:03:56 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:56 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:56 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testIsTetheringSupported_disallowConfigTethering, {})
-03-13 21:03:56 I/ConsoleReporter: [35/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testIsTetheringSupported_disallowConfigTethering pass
-03-13 21:03:56 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_muteVolume_disallowAdjustVolume()
-03-13 21:03:56 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_muteVolume_disallowAdjustVolume)
-03-13 21:03:58 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:03:58 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:03:58 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_muteVolume_disallowAdjustVolume, {})
-03-13 21:03:58 I/ConsoleReporter: [36/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_muteVolume_disallowAdjustVolume pass
-03-13 21:03:58 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_changeVolume_disallowAdjustVolume()
-03-13 21:03:58 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_changeVolume_disallowAdjustVolume)
-03-13 21:04:00 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:00 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:00 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_changeVolume_disallowAdjustVolume, {})
-03-13 21:04:00 I/ConsoleReporter: [37/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_changeVolume_disallowAdjustVolume pass
-03-13 21:04:00 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteMicrophone_changeVolume_disallowUnmuteMicrophone()
-03-13 21:04:00 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteMicrophone_changeVolume_disallowUnmuteMicrophone)
-03-13 21:04:02 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:02 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:02 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteMicrophone_changeVolume_disallowUnmuteMicrophone, {})
-03-13 21:04:02 I/ConsoleReporter: [38/38 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteMicrophone_changeVolume_disallowUnmuteMicrophone pass
-03-13 21:04:02 D/ModuleListener: ModuleListener.testRunEnded(30007, {})
-03-13 21:04:02 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 30s. 37 passed, 1 failed, 0 not executed
-03-13 21:04:02 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.devicepolicy.DeviceAdminTest, 1)
-03-13 21:04:02 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 39 tests
-03-13 21:04:02 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceAdminTest#testDevicePolicyManagerTest()
-03-13 21:04:02 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceAdminTest#testDevicePolicyManagerTest)
-03-13 21:04:05 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:05 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:05 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceAdminTest#testDevicePolicyManagerTest, {})
-03-13 21:04:05 I/ConsoleReporter: [39/39 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceAdminTest#testDevicePolicyManagerTest pass
-03-13 21:04:05 D/ModuleListener: ModuleListener.testRunEnded(2323, {})
-03-13 21:04:05 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 2s. 38 passed, 1 failed, 0 not executed
-03-13 21:04:05 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest, 9)
-03-13 21:04:05 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 48 tests
-03-13 21:04:05 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testDeviceOwnerSetup()
-03-13 21:04:05 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testDeviceOwnerSetup)
-03-13 21:04:07 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:07 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:07 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testDeviceOwnerSetup, {})
-03-13 21:04:07 I/ConsoleReporter: [40/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testDeviceOwnerSetup pass
-03-13 21:04:07 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testBackup()
-03-13 21:04:07 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testBackup)
-03-13 21:04:09 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:09 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:09 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testBackup, {})
-03-13 21:04:09 I/ConsoleReporter: [41/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testBackup pass
-03-13 21:04:09 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testDevicePolicyManager()
-03-13 21:04:09 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testDevicePolicyManager)
-03-13 21:04:12 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:12 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:12 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testDevicePolicyManager, {})
-03-13 21:04:12 I/ConsoleReporter: [42/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testDevicePolicyManager pass
-03-13 21:04:12 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitAccessibilityServices()
-03-13 21:04:12 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitAccessibilityServices)
-03-13 21:04:14 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:14 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:14 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitAccessibilityServices, {})
-03-13 21:04:14 I/ConsoleReporter: [43/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitAccessibilityServices pass
-03-13 21:04:14 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitInputMethods()
-03-13 21:04:14 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitInputMethods)
-03-13 21:04:17 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:17 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:17 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitInputMethods, {})
-03-13 21:04:17 I/ConsoleReporter: [44/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitInputMethods pass
-03-13 21:04:17 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyStaticProxyTest()
-03-13 21:04:17 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyStaticProxyTest)
-03-13 21:04:19 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:19 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:19 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyStaticProxyTest, {})
-03-13 21:04:19 I/ConsoleReporter: [45/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyStaticProxyTest pass
-03-13 21:04:19 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest()
-03-13 21:04:19 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest)
-03-13 21:04:21 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:21 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:21 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest, {})
-03-13 21:04:21 I/ConsoleReporter: [46/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest pass
-03-13 21:04:21 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testFactoryResetProtection()
-03-13 21:04:21 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testFactoryResetProtection)
-03-13 21:04:23 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:23 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:23 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testFactoryResetProtection, {})
-03-13 21:04:23 I/ConsoleReporter: [47/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testFactoryResetProtection pass
-03-13 21:04:23 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testNotifySystemUpdate()
-03-13 21:04:23 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testNotifySystemUpdate)
-03-13 21:04:26 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:04:26 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:04:26 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testNotifySystemUpdate, {})
-03-13 21:04:26 I/ConsoleReporter: [48/48 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testNotifySystemUpdate pass
-03-13 21:04:26 D/ModuleListener: ModuleListener.testRunEnded(21055, {})
-03-13 21:04:26 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 21s. 47 passed, 1 failed, 0 not executed
-03-13 21:04:26 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.trust.TrustHostTest, 12)
-03-13 21:04:26 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 60 tests
-03-13 21:04:26 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toTrue()
-03-13 21:04:26 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toTrue)
-03-13 21:04:27 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:28 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:29 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testSetManagingTrust_toTrue com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:04:30 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testSetManagingTrust_toTrue: PASSED
-03-13 21:04:30 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:04:31 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toTrue, {})
-03-13 21:04:31 I/ConsoleReporter: [49/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toTrue pass
-03-13 21:04:31 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toFalse()
-03-13 21:04:31 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toFalse)
-03-13 21:04:33 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:33 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:34 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testSetManagingTrust_toFalse com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:04:35 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testSetManagingTrust_toFalse: PASSED
-03-13 21:04:35 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:04:36 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toFalse, {})
-03-13 21:04:36 I/ConsoleReporter: [50/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toFalse pass
-03-13 21:04:36 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_Indefinitely()
-03-13 21:04:36 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_Indefinitely)
-03-13 21:04:38 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:38 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:40 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testGrantTrust_Indefinitely com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:04:41 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testGrantTrust_Indefinitely: PASSED
-03-13 21:04:41 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:04:42 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_Indefinitely, {})
-03-13 21:04:42 I/ConsoleReporter: [51/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_Indefinitely pass
-03-13 21:04:42 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30Seconds()
-03-13 21:04:42 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30Seconds)
-03-13 21:04:43 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:43 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:45 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testGrantTrust_For30Seconds com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:04:46 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testGrantTrust_For30Seconds: PASSED
-03-13 21:04:46 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:04:47 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30Seconds, {})
-03-13 21:04:47 I/ConsoleReporter: [52/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30Seconds pass
-03-13 21:04:47 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30SecondsAndInitiatedByUser()
-03-13 21:04:47 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30SecondsAndInitiatedByUser)
-03-13 21:04:49 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:49 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:51 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testGrantTrust_For30SecondsAndInitiatedByUser com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:04:52 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testGrantTrust_For30SecondsAndInitiatedByUser: PASSED
-03-13 21:04:52 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:04:53 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30SecondsAndInitiatedByUser, {})
-03-13 21:04:53 I/ConsoleReporter: [53/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30SecondsAndInitiatedByUser pass
-03-13 21:04:53 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_failsIfNotManagingTrust()
-03-13 21:04:53 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_failsIfNotManagingTrust)
-03-13 21:04:54 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:54 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:56 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testGrantTrust_failsIfNotManagingTrust com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:04:57 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testGrantTrust_failsIfNotManagingTrust: PASSED
-03-13 21:04:57 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:04:58 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_failsIfNotManagingTrust, {})
-03-13 21:04:58 I/ConsoleReporter: [54/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_failsIfNotManagingTrust pass
-03-13 21:04:58 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_withoutGrantingItFirst()
-03-13 21:04:58 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_withoutGrantingItFirst)
-03-13 21:04:59 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:04:59 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:01 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_withoutGrantingItFirst com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:02 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_withoutGrantingItFirst: PASSED
-03-13 21:05:02 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:05:03 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_withoutGrantingItFirst, {})
-03-13 21:05:03 I/ConsoleReporter: [55/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_withoutGrantingItFirst pass
-03-13 21:05:03 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_afterGrantingItFirst()
-03-13 21:05:03 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_afterGrantingItFirst)
-03-13 21:05:04 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:04 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:06 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_afterGrantingItFirst com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:07 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_afterGrantingItFirst: PASSED
-03-13 21:05:07 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:05:08 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_afterGrantingItFirst, {})
-03-13 21:05:08 I/ConsoleReporter: [56/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_afterGrantingItFirst pass
-03-13 21:05:08 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_succeedsEvenIfNotManagingTrust()
-03-13 21:05:08 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_succeedsEvenIfNotManagingTrust)
-03-13 21:05:10 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:10 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:11 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_succeedsEvenIfNotManagingTrust com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:12 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_succeedsEvenIfNotManagingTrust: PASSED
-03-13 21:05:12 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:05:13 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_succeedsEvenIfNotManagingTrust, {})
-03-13 21:05:13 I/ConsoleReporter: [57/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_succeedsEvenIfNotManagingTrust pass
-03-13 21:05:13 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_success()
-03-13 21:05:13 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_success)
-03-13 21:05:15 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:15 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:17 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testUnlockAttempt_success com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:18 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testUnlockAttempt_success: PASSED
-03-13 21:05:18 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:05:19 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_success, {})
-03-13 21:05:19 I/ConsoleReporter: [58/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_success pass
-03-13 21:05:19 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_failure()
-03-13 21:05:19 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_failure)
-03-13 21:05:20 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:20 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:22 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testUnlockAttempt_failure com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:23 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testUnlockAttempt_failure: PASSED
-03-13 21:05:23 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:05:24 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_failure, {})
-03-13 21:05:24 I/ConsoleReporter: [59/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_failure pass
-03-13 21:05:24 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestServiceTestCaseSetUpProperly()
-03-13 21:05:24 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestServiceTestCaseSetUpProperly)
-03-13 21:05:26 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:26 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:28 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testServiceTestCaseSetUpProperly com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:28 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testServiceTestCaseSetUpProperly: PASSED
-03-13 21:05:28 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:05:30 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestServiceTestCaseSetUpProperly, {})
-03-13 21:05:30 I/ConsoleReporter: [60/60 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestServiceTestCaseSetUpProperly pass
-03-13 21:05:30 D/ModuleListener: ModuleListener.testRunEnded(63695, {})
-03-13 21:05:30 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 1m 3s. 59 passed, 1 failed, 0 not executed
-03-13 21:05:30 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.backup.SettingsProviderBackupHostTest, 1)
-03-13 21:05:30 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 61 tests
-03-13 21:05:30 D/DeviceTestCase: Running com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR()
-03-13 21:05:30 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR)
-03-13 21:05:31 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:31 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:33 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.SettingsProviderBackupTest#testSoftApE2EBR com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:34 I/XtsHostTestBase: Test com.google.android.gts.backup.SettingsProviderBackupTest#testSoftApE2EBR: FAILURE
-03-13 21:05:34 W/XtsHostTestBase: java.lang.NullPointerException: Attempt to read from field 'java.lang.String android.net.wifi.WifiConfiguration.SSID' on a null object reference

-at com.google.android.gts.backup.SettingsProviderBackupTest.setTempData(SettingsProviderBackupTest.java:75)

-at com.google.android.gts.backup.AbstractBackupRestoreE2ETest.runE2ETest(AbstractBackupRestoreE2ETest.java:107)

-at com.google.android.gts.backup.SettingsProviderBackupTest.testSoftApE2EBR(SettingsProviderBackupTest.java:66)

-at android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:220)

-at android.test.InstrumentationTestCase.runTest(InstrumentationTestCase.java:205)

-at android.test.ActivityInstrumentationTestCase2.runTest(ActivityInstrumentationTestCase2.java:192)

-at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:198)

-at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:183)

-at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:560)

-at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1925)

-
-03-13 21:05:34 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:05:35 D/ModuleListener: ModuleListener.testFailed(com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR, junit.framework.AssertionFailedError: testSoftApE2EBR failed.
-	at junit.framework.Assert.fail(Assert.java:50)
-	at junit.framework.Assert.assertTrue(Assert.java:20)
-	at com.google.android.gts.backup.SettingsProviderBackupHostTest.testSoftApE2EBR(SettingsProviderBackupHostTest.java:62)
-	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:497)
-	at junit.framework.TestCase.runTest(TestCase.java:168)
-	at junit.framework.TestCase.runBare(TestCase.java:134)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-)
-03-13 21:05:35 I/ConsoleReporter: [61/61 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR fail: junit.framework.AssertionFailedError: testSoftApE2EBR failed.
-	at junit.framework.Assert.fail(Assert.java:50)
-	at junit.framework.Assert.assertTrue(Assert.java:20)
-	at com.google.android.gts.backup.SettingsProviderBackupHostTest.testSoftApE2EBR(SettingsProviderBackupHostTest.java:62)
-	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:497)
-	at junit.framework.TestCase.runTest(TestCase.java:168)
-	at junit.framework.TestCase.runBare(TestCase.java:134)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-
-03-13 21:05:35 I/FailureListener: FailureListener.testFailed com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR false false false
-03-13 21:05:35 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR, {})
-03-13 21:05:35 D/ModuleListener: ModuleListener.testRunEnded(5637, {})
-03-13 21:05:35 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 5s. 59 passed, 2 failed, 0 not executed
-03-13 21:05:35 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.backup.BackupManagerHostTest, 6)
-03-13 21:05:35 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 67 tests
-03-13 21:05:35 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_multiplePackages()
-03-13 21:05:35 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_multiplePackages)
-03-13 21:05:37 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:37 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:39 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_multiplePackages com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:40 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_multiplePackages: PASSED
-03-13 21:05:40 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:05:41 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_multiplePackages, {})
-03-13 21:05:41 I/ConsoleReporter: [62/67 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_multiplePackages pass
-03-13 21:05:41 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testIsAppEligibleForBackup()
-03-13 21:05:41 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testIsAppEligibleForBackup)
-03-13 21:05:43 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:43 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:45 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testIsAppEligibleForBackup com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:46 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testIsAppEligibleForBackup: PASSED
-03-13 21:05:46 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:05:47 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testIsAppEligibleForBackup, {})
-03-13 21:05:47 I/ConsoleReporter: [63/67 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testIsAppEligibleForBackup pass
-03-13 21:05:47 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_noPackages()
-03-13 21:05:47 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_noPackages)
-03-13 21:05:48 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:48 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:51 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_noPackages com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:52 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_noPackages: PASSED
-03-13 21:05:52 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:05:53 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_noPackages, {})
-03-13 21:05:53 I/ConsoleReporter: [64/67 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_noPackages pass
-03-13 21:05:53 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_badTransport()
-03-13 21:05:53 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_badTransport)
-03-13 21:05:54 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:54 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:05:56 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_badTransport com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:05:57 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_badTransport: PASSED
-03-13 21:05:57 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:05:59 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_badTransport, {})
-03-13 21:05:59 I/ConsoleReporter: [65/67 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_badTransport pass
-03-13 21:05:59 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_success()
-03-13 21:05:59 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_success)
-03-13 21:06:00 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:00 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:02 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_success com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:06:03 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_success: PASSED
-03-13 21:06:03 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:06:04 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_success, {})
-03-13 21:06:04 I/ConsoleReporter: [66/67 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_success pass
-03-13 21:06:04 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_fails()
-03-13 21:06:04 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_fails)
-03-13 21:06:06 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:06 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:08 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_fails com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:06:09 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_fails: PASSED
-03-13 21:06:09 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:06:10 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_fails, {})
-03-13 21:06:10 I/ConsoleReporter: [67/67 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_fails pass
-03-13 21:06:10 D/ModuleListener: ModuleListener.testRunEnded(35062, {})
-03-13 21:06:10 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 35s. 65 passed, 2 failed, 0 not executed
-03-13 21:06:10 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.backup.BackupHostTest, 1)
-03-13 21:06:10 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 68 tests
-03-13 21:06:10 D/DeviceTestCase: Running com.google.android.gts.backup.BackupHostTest#testGmsBackupTransportIsDefault()
-03-13 21:06:10 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupHostTest#testGmsBackupTransportIsDefault)
-03-13 21:06:12 I/AndroidNativeDevice: Rebooting device chromeos2-row4-rack7-host11:22
-03-13 21:06:12 I/TestDevice: framework reboot is not supported; when enable root is disabled
-03-13 21:06:12 I/AndroidNativeDeviceStateMonitor: Waiting for device chromeos2-row4-rack7-host11:22 to be NOT_AVAILABLE; it is currently ONLINE...
-03-13 21:06:12 I/AndroidNativeDeviceStateMonitor: Waiting for device chromeos2-row4-rack7-host11:22 to be ONLINE; it is currently NOT_AVAILABLE...
-03-13 21:06:12 D/BackgroundDeviceAction: Sleep for 5000 before starting logcat for chromeos2-row4-rack7-host11:22.
-03-13 21:06:17 D/BackgroundDeviceAction: Waiting for device chromeos2-row4-rack7-host11:22 online before starting.
-03-13 21:06:28 I/AndroidNativeDevice: "enable-root" set to false; ignoring 'adb root' request
-03-13 21:06:28 I/AndroidNativeDevice: root is required for encryption
-03-13 21:06:28 I/AndroidNativeDeviceStateMonitor: Device chromeos2-row4-rack7-host11:22 is already ONLINE
-03-13 21:06:28 I/AndroidNativeDeviceStateMonitor: Waiting 600000 ms for device chromeos2-row4-rack7-host11:22 boot complete
-03-13 21:06:28 I/DeviceStateMonitor: Waiting 599947 ms for device chromeos2-row4-rack7-host11:22 package manager
-03-13 21:06:29 I/AndroidNativeDeviceStateMonitor: Waiting 599151 ms for device chromeos2-row4-rack7-host11:22 external store
-03-13 21:06:29 I/AndroidNativeDevice: "enable-root" set to false; ignoring 'adb root' request
-03-13 21:06:30 I/TestDevice: Attempting to disable keyguard on chromeos2-row4-rack7-host11:22 using input keyevent 82
-03-13 21:06:30 V/BackupHostTest: Rebooting done
-03-13 21:06:31 V/BackupHostTest: Output for command bmgr list transports:
-    android/com.android.internal.backup.LocalTransport
-  * com.google.android.gms/.backup.BackupTransportService
-
-03-13 21:06:31 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupHostTest#testGmsBackupTransportIsDefault, {})
-03-13 21:06:31 I/ConsoleReporter: [68/68 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupHostTest#testGmsBackupTransportIsDefault pass
-03-13 21:06:31 D/ModuleListener: ModuleListener.testRunEnded(20881, {})
-03-13 21:06:31 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 20s. 66 passed, 2 failed, 0 not executed
-03-13 21:06:31 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.bluetooth.BluetoothHostTest, 2)
-03-13 21:06:31 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 70 tests
-03-13 21:06:31 D/DeviceTestCase: Running com.google.android.gts.bluetooth.BluetoothHostTest#testMessageAccessPermission()
-03-13 21:06:31 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.bluetooth.BluetoothHostTest#testMessageAccessPermission)
-03-13 21:06:33 D/GtsGmsCoreBluetoothTestApp.apk: Uploading GtsGmsCoreBluetoothTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:33 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:36 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.bluetooth.SystemBluetoothTest#testMessageAccessPermission com.google.android.gts.bluetooth/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:06:37 D/BackgroundDeviceAction: Device chromeos2-row4-rack7-host11:22 now online.
-03-13 21:06:37 D/BackgroundDeviceAction: Starting logcat for chromeos2-row4-rack7-host11:22.
-03-13 21:06:44 I/XtsHostTestBase: Test com.google.android.gts.bluetooth.SystemBluetoothTest#testMessageAccessPermission: PASSED
-03-13 21:06:44 D/TestDevice: Uninstalling com.google.android.gts.bluetooth
-03-13 21:06:45 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.bluetooth.BluetoothHostTest#testMessageAccessPermission, {})
-03-13 21:06:45 I/ConsoleReporter: [69/70 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.bluetooth.BluetoothHostTest#testMessageAccessPermission pass
-03-13 21:06:45 D/DeviceTestCase: Running com.google.android.gts.bluetooth.BluetoothHostTest#testPhonebookAccessPermission()
-03-13 21:06:45 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.bluetooth.BluetoothHostTest#testPhonebookAccessPermission)
-03-13 21:06:46 D/GtsGmsCoreBluetoothTestApp.apk: Uploading GtsGmsCoreBluetoothTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:46 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:48 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.bluetooth.SystemBluetoothTest#testPhonebookAccessPermission com.google.android.gts.bluetooth/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:06:55 I/XtsHostTestBase: Test com.google.android.gts.bluetooth.SystemBluetoothTest#testPhonebookAccessPermission: PASSED
-03-13 21:06:55 D/TestDevice: Uninstalling com.google.android.gts.bluetooth
-03-13 21:06:56 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.bluetooth.BluetoothHostTest#testPhonebookAccessPermission, {})
-03-13 21:06:56 I/ConsoleReporter: [70/70 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.bluetooth.BluetoothHostTest#testPhonebookAccessPermission pass
-03-13 21:06:56 D/ModuleListener: ModuleListener.testRunEnded(25301, {})
-03-13 21:06:56 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 25s. 68 passed, 2 failed, 0 not executed
-03-13 21:06:56 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.wifi.WifiHostTest, 19)
-03-13 21:06:56 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing x86 GtsGmscoreHostTestCases with 89 tests
-03-13 21:06:56 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testParceling()
-03-13 21:06:56 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testParceling)
-03-13 21:06:58 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:06:58 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:00 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testParceling com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:01 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testParceling: PASSED
-03-13 21:07:01 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:02 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testParceling, {})
-03-13 21:07:02 I/ConsoleReporter: [71/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testParceling pass
-03-13 21:07:02 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_hex()
-03-13 21:07:02 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_hex)
-03-13 21:07:03 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:03 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:05 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testValidWifiKey_hex com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:06 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testValidWifiKey_hex: PASSED
-03-13 21:07:06 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:07 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_hex, {})
-03-13 21:07:07 I/ConsoleReporter: [72/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_hex pass
-03-13 21:07:07 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_empty()
-03-13 21:07:07 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_empty)
-03-13 21:07:09 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:09 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:11 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_empty com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:11 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_empty: PASSED
-03-13 21:07:11 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:12 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_empty, {})
-03-13 21:07:12 I/ConsoleReporter: [73/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_empty pass
-03-13 21:07:12 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_unquotedUtf8()
-03-13 21:07:12 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_unquotedUtf8)
-03-13 21:07:14 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:14 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:16 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_unquotedUtf8 com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:17 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_unquotedUtf8: PASSED
-03-13 21:07:17 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:18 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_unquotedUtf8, {})
-03-13 21:07:18 I/ConsoleReporter: [74/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_unquotedUtf8 pass
-03-13 21:07:18 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_utf8()
-03-13 21:07:18 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_utf8)
-03-13 21:07:19 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:19 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:21 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testValidWifiKey_utf8 com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:22 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testValidWifiKey_utf8: PASSED
-03-13 21:07:22 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:23 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_utf8, {})
-03-13 21:07:23 I/ConsoleReporter: [75/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_utf8 pass
-03-13 21:07:23 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_invalidHex()
-03-13 21:07:23 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_invalidHex)
-03-13 21:07:24 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:24 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:26 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_invalidHex com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:27 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_invalidHex: PASSED
-03-13 21:07:27 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:28 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_invalidHex, {})
-03-13 21:07:28 I/ConsoleReporter: [76/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_invalidHex pass
-03-13 21:07:28 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_shortBssid()
-03-13 21:07:28 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_shortBssid)
-03-13 21:07:30 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:30 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:31 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_shortBssid com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:32 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_shortBssid: PASSED
-03-13 21:07:32 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:33 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_shortBssid, {})
-03-13 21:07:33 I/ConsoleReporter: [77/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_shortBssid pass
-03-13 21:07:33 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_longBssid()
-03-13 21:07:33 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_longBssid)
-03-13 21:07:35 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:35 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:37 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_longBssid com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:38 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_longBssid: PASSED
-03-13 21:07:38 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:39 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_longBssid, {})
-03-13 21:07:39 I/ConsoleReporter: [78/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_longBssid pass
-03-13 21:07:39 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testNetworkScoreManager()
-03-13 21:07:39 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testNetworkScoreManager)
-03-13 21:07:40 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:40 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:42 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkScoreManagerTest#testNetworkScoreManager com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:43 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkScoreManagerTest#testNetworkScoreManager: PASSED
-03-13 21:07:43 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:44 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testNetworkScoreManager, {})
-03-13 21:07:44 I/ConsoleReporter: [79/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testNetworkScoreManager pass
-03-13 21:07:44 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testLookupScore_constantCurve()
-03-13 21:07:44 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testLookupScore_constantCurve)
-03-13 21:07:46 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:46 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:48 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.RssiCurveTest#testLookupScore_constantCurve com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:49 I/XtsHostTestBase: Test com.google.android.gts.wifi.RssiCurveTest#testLookupScore_constantCurve: PASSED
-03-13 21:07:49 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:50 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testLookupScore_constantCurve, {})
-03-13 21:07:50 I/ConsoleReporter: [80/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testLookupScore_constantCurve pass
-03-13 21:07:50 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testLookupScore_changingCurve()
-03-13 21:07:50 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testLookupScore_changingCurve)
-03-13 21:07:51 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:51 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:53 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.RssiCurveTest#testLookupScore_changingCurve com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:07:54 I/XtsHostTestBase: Test com.google.android.gts.wifi.RssiCurveTest#testLookupScore_changingCurve: PASSED
-03-13 21:07:54 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:07:55 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testLookupScore_changingCurve, {})
-03-13 21:07:55 I/ConsoleReporter: [81/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testLookupScore_changingCurve pass
-03-13 21:07:55 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks()
-03-13 21:07:55 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks)
-03-13 21:07:56 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:56 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:07:58 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiManagerTest#testGetPrivilegedConfiguredNetworks com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:08:09 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiManagerTest#testGetPrivilegedConfiguredNetworks: FAILURE
-03-13 21:08:09 W/XtsHostTestBase: junit.framework.AssertionFailedError

-at com.google.android.gts.wifi.WifiManagerTest.testGetPrivilegedConfiguredNetworks(WifiManagerTest.java:109)

-at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:198)

-at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:183)

-at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:560)

-at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1925)

-
-03-13 21:08:09 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:08:10 D/ModuleListener: ModuleListener.testFailed(com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks, junit.framework.AssertionFailedError: testGetPrivilegedConfiguredNetworks failed.
-	at junit.framework.Assert.fail(Assert.java:50)
-	at junit.framework.Assert.assertTrue(Assert.java:20)
-	at com.google.android.gts.wifi.WifiHostTest.runTest(WifiHostTest.java:138)
-	at com.google.android.gts.wifi.WifiHostTest.testGetPrivilegedConfiguredNetworks(WifiHostTest.java:104)
-	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:497)
-	at junit.framework.TestCase.runTest(TestCase.java:168)
-	at junit.framework.TestCase.runBare(TestCase.java:134)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-)
-03-13 21:08:10 I/ConsoleReporter: [82/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks fail: junit.framework.AssertionFailedError: testGetPrivilegedConfiguredNetworks failed.
-	at junit.framework.Assert.fail(Assert.java:50)
-	at junit.framework.Assert.assertTrue(Assert.java:20)
-	at com.google.android.gts.wifi.WifiHostTest.runTest(WifiHostTest.java:138)
-	at com.google.android.gts.wifi.WifiHostTest.testGetPrivilegedConfiguredNetworks(WifiHostTest.java:104)
-	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:497)
-	at junit.framework.TestCase.runTest(TestCase.java:168)
-	at junit.framework.TestCase.runBare(TestCase.java:134)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-
-03-13 21:08:10 I/FailureListener: FailureListener.testFailed com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks false false false
-03-13 21:08:10 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks, {})
-03-13 21:08:10 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testWifiApStateChangeIntent()
-03-13 21:08:10 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testWifiApStateChangeIntent)
-03-13 21:08:12 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:12 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:13 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiManagerTest#testWifiApStateChangeIntent com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:08:24 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiManagerTest#testWifiApStateChangeIntent: PASSED
-03-13 21:08:24 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:08:25 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testWifiApStateChangeIntent, {})
-03-13 21:08:25 I/ConsoleReporter: [83/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testWifiApStateChangeIntent pass
-03-13 21:08:25 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_nullBuckets()
-03-13 21:08:25 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_nullBuckets)
-03-13 21:08:27 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:27 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:29 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.ScoredNetworkTest#testInvalidCurve_nullBuckets com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:08:30 I/XtsHostTestBase: Test com.google.android.gts.wifi.ScoredNetworkTest#testInvalidCurve_nullBuckets: PASSED
-03-13 21:08:30 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:08:31 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_nullBuckets, {})
-03-13 21:08:31 I/ConsoleReporter: [84/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_nullBuckets pass
-03-13 21:08:31 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_emptyBuckets()
-03-13 21:08:31 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_emptyBuckets)
-03-13 21:08:32 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:32 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:35 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.ScoredNetworkTest#testInvalidCurve_emptyBuckets com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:08:36 I/XtsHostTestBase: Test com.google.android.gts.wifi.ScoredNetworkTest#testInvalidCurve_emptyBuckets: PASSED
-03-13 21:08:36 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:08:37 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_emptyBuckets, {})
-03-13 21:08:37 I/ConsoleReporter: [85/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_emptyBuckets pass
-03-13 21:08:37 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testTestParceling()
-03-13 21:08:37 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testTestParceling)
-03-13 21:08:38 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:38 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:40 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.ScoredNetworkTest#testParceling com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:08:41 I/XtsHostTestBase: Test com.google.android.gts.wifi.ScoredNetworkTest#testParceling: PASSED
-03-13 21:08:41 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:08:42 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testTestParceling, {})
-03-13 21:08:42 I/ConsoleReporter: [86/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testTestParceling pass
-03-13 21:08:42 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotTimestamp()
-03-13 21:08:42 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotTimestamp)
-03-13 21:08:43 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:43 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:45 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiScannerTest#testOneShotScanTimestamp com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:08:46 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiScannerTest#testOneShotScanTimestamp: PASSED
-03-13 21:08:46 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:08:47 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotTimestamp, {})
-03-13 21:08:47 I/ConsoleReporter: [87/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotTimestamp pass
-03-13 21:08:47 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotChannels()
-03-13 21:08:47 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotChannels)
-03-13 21:08:49 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:49 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:51 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiScannerTest#testOneShotScanChannels com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:08:51 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiScannerTest#testOneShotScanChannels: PASSED
-03-13 21:08:51 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:08:52 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotChannels, {})
-03-13 21:08:52 I/ConsoleReporter: [88/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotChannels pass
-03-13 21:08:52 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testWifiScannerBatchTimestamp()
-03-13 21:08:52 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testWifiScannerBatchTimestamp)
-03-13 21:08:54 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:54 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:56 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiScannerTest#testBatchScanTimestampOrder com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:08:56 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiScannerTest#testBatchScanTimestampOrder: PASSED
-03-13 21:08:56 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:08:57 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testWifiScannerBatchTimestamp, {})
-03-13 21:08:57 I/ConsoleReporter: [89/89 x86 GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testWifiScannerBatchTimestamp pass
-03-13 21:08:57 D/ModuleListener: ModuleListener.testRunEnded(120888, {})
-03-13 21:08:57 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] x86 GtsGmscoreHostTestCases completed in 2m 0s. 86 passed, 3 failed, 0 not executed
-03-13 21:08:57 W/CompatibilityTest: Inaccurate runtime hint for x86 GtsGmscoreHostTestCases, expected 1m 0s was 6m 52s
-03-13 21:08:57 I/CompatibilityTest: Running system status checker after module execution: GtsGmscoreHostTestCases
-03-13 21:08:57 D/WifiUtil.apk986181265472141348.apk: Uploading WifiUtil.apk986181265472141348.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:08:58 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:01 I/MonitoringUtils: Connectivity: passed check.
-03-13 21:09:01 I/CompatibilityTest: Running system status checker before module execution: GtsGmscoreHostTestCases
-03-13 21:09:01 D/ModuleDef: Preparer: StubTargetPreparer
-03-13 21:09:01 D/TargetPreparer: skipping target prepare step
-03-13 21:09:01 D/ModuleDef: Test: JarHostTest
-03-13 21:09:01 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.provider.ProviderHostTest, 1)
-03-13 21:09:01 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Starting armeabi-v7a GtsGmscoreHostTestCases with 1 test
-03-13 21:09:01 D/DeviceTestCase: Running com.google.android.gts.provider.ProviderHostTest#testAll()
-03-13 21:09:01 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.provider.ProviderHostTest#testAll)
-03-13 21:09:02 D/GtsGmsCoreProviderTestApp.apk: Uploading GtsGmsCoreProviderTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:02 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:05 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.provider.ContactsMetadataProviderTest com.google.android.gts.provider/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:09:06 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testBulkInsert: PASSED
-03-13 21:09:06 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testCallerCheck: PASSED
-03-13 21:09:06 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testInsert_withNonExistingAccount: PASSED
-03-13 21:09:06 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testInsert_withUnknownUrl: PASSED
-03-13 21:09:06 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testQuery_withUnknownUrl: PASSED
-03-13 21:09:06 I/XtsHostTestBase: Test com.google.android.gts.provider.ContactsMetadataProviderTest#testUpdate_withUnknownUrl: PASSED
-03-13 21:09:06 D/TestDevice: Uninstalling com.google.android.gts.provider
-03-13 21:09:07 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.provider.ProviderHostTest#testAll, {})
-03-13 21:09:07 I/ConsoleReporter: [1/1 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.provider.ProviderHostTest#testAll pass
-03-13 21:09:07 D/ModuleListener: ModuleListener.testRunEnded(5990, {})
-03-13 21:09:07 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 5s. 1 passed, 0 failed, 0 not executed
-03-13 21:09:07 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.multiuser.RestrictedProfileHostTest, 1)
-03-13 21:09:07 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 2 tests
-03-13 21:09:07 D/DeviceTestCase: Running com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile()
-03-13 21:09:07 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile)
-03-13 21:09:09 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:09:09 I/XtsHostTestBase: Device doesn't have required feature android.hardware.telephony. Tests won't run.
-03-13 21:09:10 I/RestrictedProfileHostTest: Output for command am get-current-user: 0
-
-03-13 21:09:10 I/RestrictedProfileHostTest: Output for command am get-current-user: 0
-
-03-13 21:09:11 I/RestrictedProfileHostTest: Output for command pm create-user --profileOf 0 --restricted TestProfile_1489464550801: Error: couldn't create User.
-
-03-13 21:09:11 D/ModuleListener: ModuleListener.testFailed(com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile, junit.framework.ComparisonFailure: Error: couldn't create User.
- expected:<[Success]:> but was:<[Error]:>
-	at junit.framework.Assert.assertEquals(Assert.java:85)
-	at com.google.android.gts.multiuser.RestrictedProfileHostTest.createRestrictedProfile(RestrictedProfileHostTest.java:92)
-	at com.google.android.gts.multiuser.RestrictedProfileHostTest.setUp(RestrictedProfileHostTest.java:45)
-	at junit.framework.TestCase.runBare(TestCase.java:132)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-)
-03-13 21:09:11 I/ConsoleReporter: [2/2 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile fail: junit.framework.ComparisonFailure: Error: couldn't create User.
- expected:<[Success]:> but was:<[Error]:>
-	at junit.framework.Assert.assertEquals(Assert.java:85)
-	at com.google.android.gts.multiuser.RestrictedProfileHostTest.createRestrictedProfile(RestrictedProfileHostTest.java:92)
-	at com.google.android.gts.multiuser.RestrictedProfileHostTest.setUp(RestrictedProfileHostTest.java:45)
-	at junit.framework.TestCase.runBare(TestCase.java:132)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-
-03-13 21:09:11 I/FailureListener: FailureListener.testFailed com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile false false false
-03-13 21:09:11 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.multiuser.RestrictedProfileHostTest#testRestrictedProfile, {})
-03-13 21:09:11 D/ModuleListener: ModuleListener.testRunEnded(4290, {})
-03-13 21:09:11 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 4s. 1 passed, 1 failed, 0 not executed
-03-13 21:09:11 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.cast.VirtualDisplayHostTest, 1)
-03-13 21:09:11 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 3 tests
-03-13 21:09:11 D/DeviceTestCase: Running com.google.android.gts.cast.VirtualDisplayHostTest#testTestPrivateVirtualDisplay()
-03-13 21:09:11 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.cast.VirtualDisplayHostTest#testTestPrivateVirtualDisplay)
-03-13 21:09:13 D/GtsGmsCoreCastTestApp.apk: Uploading GtsGmsCoreCastTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:13 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:15 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.cast.VirtualDisplayTest#testPrivateVirtualDisplay com.google.android.gts.cast/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:09:16 I/XtsHostTestBase: Test com.google.android.gts.cast.VirtualDisplayTest#testPrivateVirtualDisplay: PASSED
-03-13 21:09:16 D/TestDevice: Uninstalling com.google.android.gts.cast
-03-13 21:09:17 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.cast.VirtualDisplayHostTest#testTestPrivateVirtualDisplay, {})
-03-13 21:09:17 I/ConsoleReporter: [3/3 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.cast.VirtualDisplayHostTest#testTestPrivateVirtualDisplay pass
-03-13 21:09:17 D/ModuleListener: ModuleListener.testRunEnded(6129, {})
-03-13 21:09:17 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 6s. 2 passed, 1 failed, 0 not executed
-03-13 21:09:17 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.cast.RemoteSubmixHostTest, 1)
-03-13 21:09:17 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 4 tests
-03-13 21:09:17 D/DeviceTestCase: Running com.google.android.gts.cast.RemoteSubmixHostTest#testRecordFromRemoteSubmix()
-03-13 21:09:17 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.cast.RemoteSubmixHostTest#testRecordFromRemoteSubmix)
-03-13 21:09:19 D/GtsGmsCoreCastTestApp.apk: Uploading GtsGmsCoreCastTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:19 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:21 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.cast.RemoteSubmixTest#testRecordFromRemoteSubmix com.google.android.gts.cast/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:09:23 I/XtsHostTestBase: Test com.google.android.gts.cast.RemoteSubmixTest#testRecordFromRemoteSubmix: PASSED
-03-13 21:09:23 D/TestDevice: Uninstalling com.google.android.gts.cast
-03-13 21:09:24 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.cast.RemoteSubmixHostTest#testRecordFromRemoteSubmix, {})
-03-13 21:09:24 I/ConsoleReporter: [4/4 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.cast.RemoteSubmixHostTest#testRecordFromRemoteSubmix pass
-03-13 21:09:24 D/ModuleListener: ModuleListener.testRunEnded(7029, {})
-03-13 21:09:24 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 7s. 3 passed, 1 failed, 0 not executed
-03-13 21:09:24 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.phone.PhoneHostTest, 1)
-03-13 21:09:24 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 5 tests
-03-13 21:09:24 D/DeviceTestCase: Running com.google.android.gts.phone.PhoneHostTest#testTestIsPotentialLocalEmergencyNumber()
-03-13 21:09:24 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.phone.PhoneHostTest#testTestIsPotentialLocalEmergencyNumber)
-03-13 21:09:26 D/GtsGmsCorePhoneTestApp.apk: Uploading GtsGmsCorePhoneTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:26 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:27 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.phone.PhoneNumberUtilsTest#testIsPotentialLocalEmergencyNumber com.google.android.gts.phone/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:09:28 I/XtsHostTestBase: Test com.google.android.gts.phone.PhoneNumberUtilsTest#testIsPotentialLocalEmergencyNumber: PASSED
-03-13 21:09:28 D/TestDevice: Uninstalling com.google.android.gts.phone
-03-13 21:09:29 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.phone.PhoneHostTest#testTestIsPotentialLocalEmergencyNumber, {})
-03-13 21:09:29 I/ConsoleReporter: [5/5 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.phone.PhoneHostTest#testTestIsPotentialLocalEmergencyNumber pass
-03-13 21:09:29 D/ModuleListener: ModuleListener.testRunEnded(4858, {})
-03-13 21:09:29 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 4s. 4 passed, 1 failed, 0 not executed
-03-13 21:09:29 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.audio.AudioHostTest, 4)
-03-13 21:09:29 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 9 tests
-03-13 21:09:29 D/DeviceTestCase: Running com.google.android.gts.audio.AudioHostTest#testTwoChannelCapturing()
-03-13 21:09:29 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.audio.AudioHostTest#testTwoChannelCapturing)
-03-13 21:09:31 D/GtsGmsCoreAudioTestApp.apk: Uploading GtsGmsCoreAudioTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:31 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:32 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.audio.AudioPolicyTest#testTwoChannelCapturing com.google.android.gts.audio/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:09:34 I/XtsHostTestBase: Test com.google.android.gts.audio.AudioPolicyTest#testTwoChannelCapturing: PASSED
-03-13 21:09:34 D/TestDevice: Uninstalling GtsGmsCoreAudioTestApp.apk
-03-13 21:09:35 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.audio.AudioHostTest#testTwoChannelCapturing, {})
-03-13 21:09:35 I/ConsoleReporter: [6/9 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.audio.AudioHostTest#testTwoChannelCapturing pass
-03-13 21:09:35 D/DeviceTestCase: Running com.google.android.gts.audio.AudioHostTest#testFixedVolumeRemoteSubmixSetup()
-03-13 21:09:35 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.audio.AudioHostTest#testFixedVolumeRemoteSubmixSetup)
-03-13 21:09:37 D/GtsGmsCoreAudioTestApp.apk: Uploading GtsGmsCoreAudioTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:37 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:39 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.audio.AudioCaptureTest#testFixedVolumeRemoteSubmixSetup com.google.android.gts.audio/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:09:44 I/XtsHostTestBase: Test com.google.android.gts.audio.AudioCaptureTest#testFixedVolumeRemoteSubmixSetup: PASSED
-03-13 21:09:44 D/TestDevice: Uninstalling GtsGmsCoreAudioTestApp.apk
-03-13 21:09:45 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.audio.AudioHostTest#testFixedVolumeRemoteSubmixSetup, {})
-03-13 21:09:45 I/ConsoleReporter: [7/9 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.audio.AudioHostTest#testFixedVolumeRemoteSubmixSetup pass
-03-13 21:09:45 D/DeviceTestCase: Running com.google.android.gts.audio.AudioHostTest#testMixByUidCapturing()
-03-13 21:09:45 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.audio.AudioHostTest#testMixByUidCapturing)
-03-13 21:09:46 D/GtsGmsCoreAudioTestApp.apk: Uploading GtsGmsCoreAudioTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:46 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:48 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.audio.AudioPolicyTest#testMixByUidCapturing com.google.android.gts.audio/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:09:51 I/XtsHostTestBase: Test com.google.android.gts.audio.AudioPolicyTest#testMixByUidCapturing: PASSED
-03-13 21:09:51 D/TestDevice: Uninstalling GtsGmsCoreAudioTestApp.apk
-03-13 21:09:52 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.audio.AudioHostTest#testMixByUidCapturing, {})
-03-13 21:09:52 I/ConsoleReporter: [8/9 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.audio.AudioHostTest#testMixByUidCapturing pass
-03-13 21:09:52 D/DeviceTestCase: Running com.google.android.gts.audio.AudioHostTest#testFocusChangeMediaToGuidance()
-03-13 21:09:52 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.audio.AudioHostTest#testFocusChangeMediaToGuidance)
-03-13 21:09:53 D/GtsGmsCoreAudioTestApp.apk: Uploading GtsGmsCoreAudioTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:54 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:55 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.audio.AudioPolicyTest#testFocusChangeMediaToGuidance com.google.android.gts.audio/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:09:56 I/XtsHostTestBase: Test com.google.android.gts.audio.AudioPolicyTest#testFocusChangeMediaToGuidance: PASSED
-03-13 21:09:56 D/TestDevice: Uninstalling GtsGmsCoreAudioTestApp.apk
-03-13 21:09:57 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.audio.AudioHostTest#testFocusChangeMediaToGuidance, {})
-03-13 21:09:57 I/ConsoleReporter: [9/9 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.audio.AudioHostTest#testFocusChangeMediaToGuidance pass
-03-13 21:09:57 D/ModuleListener: ModuleListener.testRunEnded(27882, {})
-03-13 21:09:57 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 27s. 8 passed, 1 failed, 0 not executed
-03-13 21:09:57 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.power.PowerHostTest, 1)
-03-13 21:09:57 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 10 tests
-03-13 21:09:57 D/DeviceTestCase: Running com.google.android.gts.power.PowerHostTest#testTestUserActivity()
-03-13 21:09:57 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.power.PowerHostTest#testTestUserActivity)
-03-13 21:09:59 D/GtsGmsCorePowerTestApp.apk: Uploading GtsGmsCorePowerTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:09:59 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:10:00 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.power.PowerManagerTest#testUserActivity com.google.android.gts.power/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:10:01 I/XtsHostTestBase: Test com.google.android.gts.power.PowerManagerTest#testUserActivity: PASSED
-03-13 21:10:01 D/TestDevice: Uninstalling com.google.android.gts.power
-03-13 21:10:02 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.power.PowerHostTest#testTestUserActivity, {})
-03-13 21:10:02 I/ConsoleReporter: [10/10 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.power.PowerHostTest#testTestUserActivity pass
-03-13 21:10:02 D/ModuleListener: ModuleListener.testRunEnded(5135, {})
-03-13 21:10:02 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 5s. 9 passed, 1 failed, 0 not executed
-03-13 21:10:02 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.persistentdata.PersistentDataHostTest, 3)
-03-13 21:10:02 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 13 tests
-03-13 21:10:02 D/DeviceTestCase: Running com.google.android.gts.persistentdata.PersistentDataHostTest#testTestOverwriteBlock()
-03-13 21:10:02 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestOverwriteBlock)
-03-13 21:10:04 D/GtsGmsCorePersistentDataTestApp.apk: Uploading GtsGmsCorePersistentDataTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:10:04 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:10:05 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.persistentdata.PersistentDataBlockTest#testOverwriteBlock com.google.android.gts.persistentdata/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:10:06 I/XtsHostTestBase: Test com.google.android.gts.persistentdata.PersistentDataBlockTest#testOverwriteBlock: PASSED
-03-13 21:10:06 D/TestDevice: Uninstalling com.google.android.gts.persistentdata
-03-13 21:10:07 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestOverwriteBlock, {})
-03-13 21:10:07 I/ConsoleReporter: [11/13 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.persistentdata.PersistentDataHostTest#testTestOverwriteBlock pass
-03-13 21:10:07 D/DeviceTestCase: Running com.google.android.gts.persistentdata.PersistentDataHostTest#testTestWriteReadBlock()
-03-13 21:10:07 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestWriteReadBlock)
-03-13 21:10:09 D/GtsGmsCorePersistentDataTestApp.apk: Uploading GtsGmsCorePersistentDataTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:10:09 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:10:10 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.persistentdata.PersistentDataBlockTest#testWriteReadBlock com.google.android.gts.persistentdata/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:10:11 I/XtsHostTestBase: Test com.google.android.gts.persistentdata.PersistentDataBlockTest#testWriteReadBlock: PASSED
-03-13 21:10:11 D/TestDevice: Uninstalling com.google.android.gts.persistentdata
-03-13 21:10:12 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestWriteReadBlock, {})
-03-13 21:10:12 I/ConsoleReporter: [12/13 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.persistentdata.PersistentDataHostTest#testTestWriteReadBlock pass
-03-13 21:10:12 D/DeviceTestCase: Running com.google.android.gts.persistentdata.PersistentDataHostTest#testTestGetFlashLockState()
-03-13 21:10:12 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestGetFlashLockState)
-03-13 21:10:14 D/GtsGmsCorePersistentDataTestApp.apk: Uploading GtsGmsCorePersistentDataTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:10:14 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:10:16 D/TestDevice: Uninstalling com.google.android.gts.persistentdata
-03-13 21:10:17 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.persistentdata.PersistentDataHostTest#testTestGetFlashLockState, {})
-03-13 21:10:17 I/ConsoleReporter: [13/13 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.persistentdata.PersistentDataHostTest#testTestGetFlashLockState pass
-03-13 21:10:17 D/ModuleListener: ModuleListener.testRunEnded(14488, {})
-03-13 21:10:17 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 14s. 12 passed, 1 failed, 0 not executed
-03-13 21:10:17 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.telecom.TelecomHostTest, 11)
-03-13 21:10:17 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 24 tests
-03-13 21:10:17 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestStateCallbacks()
-03-13 21:10:17 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestStateCallbacks)
-03-13 21:10:17 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestStateCallbacks, {})
-03-13 21:10:17 I/ConsoleReporter: [14/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestStateCallbacks pass
-03-13 21:10:17 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestFailedState()
-03-13 21:10:17 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestFailedState)
-03-13 21:10:18 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestFailedState, {})
-03-13 21:10:18 I/ConsoleReporter: [15/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestFailedState pass
-03-13 21:10:18 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestCanceledState()
-03-13 21:10:18 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestCanceledState)
-03-13 21:10:19 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestCanceledState, {})
-03-13 21:10:19 I/ConsoleReporter: [16/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestCanceledState pass
-03-13 21:10:19 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_AddNewOutgoingCallAndThenDisconnect()
-03-13 21:10:19 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_AddNewOutgoingCallAndThenDisconnect)
-03-13 21:10:20 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_AddNewOutgoingCallAndThenDisconnect, {})
-03-13 21:10:20 I/ConsoleReporter: [17/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_AddNewOutgoingCallAndThenDisconnect pass
-03-13 21:10:20 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_MuteAndUnmutePhone()
-03-13 21:10:20 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_MuteAndUnmutePhone)
-03-13 21:10:20 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_MuteAndUnmutePhone, {})
-03-13 21:10:20 I/ConsoleReporter: [18/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_MuteAndUnmutePhone pass
-03-13 21:10:20 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_SwitchAudioRoutes()
-03-13 21:10:20 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_SwitchAudioRoutes)
-03-13 21:10:21 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_SwitchAudioRoutes, {})
-03-13 21:10:21 I/ConsoleReporter: [19/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_SwitchAudioRoutes pass
-03-13 21:10:21 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_DtmfTones()
-03-13 21:10:21 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_DtmfTones)
-03-13 21:10:22 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_DtmfTones, {})
-03-13 21:10:22 I/ConsoleReporter: [20/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_DtmfTones pass
-03-13 21:10:22 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_HoldAndUnholdCall()
-03-13 21:10:22 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_HoldAndUnholdCall)
-03-13 21:10:23 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_HoldAndUnholdCall, {})
-03-13 21:10:23 I/ConsoleReporter: [21/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestWithMockConnection_HoldAndUnholdCall pass
-03-13 21:10:23 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestTelecomIsPreinstalledAndSystem()
-03-13 21:10:23 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestTelecomIsPreinstalledAndSystem)
-03-13 21:10:24 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestTelecomIsPreinstalledAndSystem, {})
-03-13 21:10:24 I/ConsoleReporter: [22/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestTelecomIsPreinstalledAndSystem pass
-03-13 21:10:24 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestTelecomHandlesCallIntents()
-03-13 21:10:24 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestTelecomHandlesCallIntents)
-03-13 21:10:24 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestTelecomHandlesCallIntents, {})
-03-13 21:10:24 I/ConsoleReporter: [23/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestTelecomHandlesCallIntents pass
-03-13 21:10:24 D/DeviceTestCase: Running com.google.android.gts.telecom.TelecomHostTest#testTestTelephonyCall_bindsToInCallServiceAndAddsCall()
-03-13 21:10:24 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.telecom.TelecomHostTest#testTestTelephonyCall_bindsToInCallServiceAndAddsCall)
-03-13 21:10:25 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.telecom.TelecomHostTest#testTestTelephonyCall_bindsToInCallServiceAndAddsCall, {})
-03-13 21:10:25 I/ConsoleReporter: [24/24 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.telecom.TelecomHostTest#testTestTelephonyCall_bindsToInCallServiceAndAddsCall pass
-03-13 21:10:25 D/ModuleListener: ModuleListener.testRunEnded(8583, {})
-03-13 21:10:25 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 8s. 23 passed, 1 failed, 0 not executed
-03-13 21:10:25 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.devicepolicy.ManagedProfileTest, 1)
-03-13 21:10:25 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 25 tests
-03-13 21:10:25 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.ManagedProfileTest#testManagedProfile()
-03-13 21:10:25 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.ManagedProfileTest#testManagedProfile)
-03-13 21:10:28 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:28 I/XtsHostTestBase: Device doesn't have required feature android.software.managed_users. Tests won't run.
-03-13 21:10:28 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.ManagedProfileTest#testManagedProfile, {})
-03-13 21:10:28 I/ConsoleReporter: [25/25 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.ManagedProfileTest#testManagedProfile pass
-03-13 21:10:28 D/ModuleListener: ModuleListener.testRunEnded(2312, {})
-03-13 21:10:28 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 2s. 24 passed, 1 failed, 0 not executed
-03-13 21:10:28 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest, 13)
-03-13 21:10:28 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 38 tests
-03-13 21:10:28 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testHasUserRestriction()
-03-13 21:10:28 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testHasUserRestriction)
-03-13 21:10:30 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:30 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:30 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testHasUserRestriction, {})
-03-13 21:10:30 I/ConsoleReporter: [26/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testHasUserRestriction pass
-03-13 21:10:30 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testWipeData_disallowFactoryReset()
-03-13 21:10:30 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testWipeData_disallowFactoryReset)
-03-13 21:10:32 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:32 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:32 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testWipeData_disallowFactoryReset, {})
-03-13 21:10:32 I/ConsoleReporter: [27/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testWipeData_disallowFactoryReset pass
-03-13 21:10:32 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testDisallowShareLocation()
-03-13 21:10:32 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testDisallowShareLocation)
-03-13 21:10:35 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:35 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:35 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testDisallowShareLocation, {})
-03-13 21:10:35 I/ConsoleReporter: [28/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testDisallowShareLocation pass
-03-13 21:10:35 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testRebootWipeUserData_disallowFactoryReset()
-03-13 21:10:35 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testRebootWipeUserData_disallowFactoryReset)
-03-13 21:10:37 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:37 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:37 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testRebootWipeUserData_disallowFactoryReset, {})
-03-13 21:10:37 I/ConsoleReporter: [29/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testRebootWipeUserData_disallowFactoryReset pass
-03-13 21:10:37 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testInstallCaCert_disallowConfigCredentials()
-03-13 21:10:37 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testInstallCaCert_disallowConfigCredentials)
-03-13 21:10:39 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:39 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:39 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testInstallCaCert_disallowConfigCredentials, {})
-03-13 21:10:39 I/ConsoleReporter: [30/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testInstallCaCert_disallowConfigCredentials pass
-03-13 21:10:39 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testUninstallCaCert_disallowConfigCredentials()
-03-13 21:10:39 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testUninstallCaCert_disallowConfigCredentials)
-03-13 21:10:42 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:42 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:42 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testUninstallCaCert_disallowConfigCredentials, {})
-03-13 21:10:42 I/ConsoleReporter: [31/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testUninstallCaCert_disallowConfigCredentials pass
-03-13 21:10:42 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetWifiApEnabled_disallowConfigTethering()
-03-13 21:10:42 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetWifiApEnabled_disallowConfigTethering)
-03-13 21:10:44 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:44 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:44 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetWifiApEnabled_disallowConfigTethering, {})
-03-13 21:10:44 I/ConsoleReporter: [32/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetWifiApEnabled_disallowConfigTethering pass
-03-13 21:10:44 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetBluetoothTethering_disallowConfigTethering()
-03-13 21:10:44 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetBluetoothTethering_disallowConfigTethering)
-03-13 21:10:46 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:46 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:46 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetBluetoothTethering_disallowConfigTethering, {})
-03-13 21:10:46 I/ConsoleReporter: [33/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetBluetoothTethering_disallowConfigTethering pass
-03-13 21:10:46 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetUsbTethering_disallowConfigTethering()
-03-13 21:10:46 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetUsbTethering_disallowConfigTethering)
-03-13 21:10:49 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:49 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:49 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetUsbTethering_disallowConfigTethering, {})
-03-13 21:10:49 I/ConsoleReporter: [34/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testSetUsbTethering_disallowConfigTethering pass
-03-13 21:10:49 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testIsTetheringSupported_disallowConfigTethering()
-03-13 21:10:49 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testIsTetheringSupported_disallowConfigTethering)
-03-13 21:10:51 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:51 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:51 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testIsTetheringSupported_disallowConfigTethering, {})
-03-13 21:10:51 I/ConsoleReporter: [35/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testIsTetheringSupported_disallowConfigTethering pass
-03-13 21:10:51 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_muteVolume_disallowAdjustVolume()
-03-13 21:10:51 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_muteVolume_disallowAdjustVolume)
-03-13 21:10:53 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:53 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:53 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_muteVolume_disallowAdjustVolume, {})
-03-13 21:10:53 I/ConsoleReporter: [36/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_muteVolume_disallowAdjustVolume pass
-03-13 21:10:53 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_changeVolume_disallowAdjustVolume()
-03-13 21:10:53 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_changeVolume_disallowAdjustVolume)
-03-13 21:10:56 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:56 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:56 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_changeVolume_disallowAdjustVolume, {})
-03-13 21:10:56 I/ConsoleReporter: [37/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteVolume_changeVolume_disallowAdjustVolume pass
-03-13 21:10:56 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteMicrophone_changeVolume_disallowUnmuteMicrophone()
-03-13 21:10:56 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteMicrophone_changeVolume_disallowUnmuteMicrophone)
-03-13 21:10:58 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:10:58 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:10:58 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteMicrophone_changeVolume_disallowUnmuteMicrophone, {})
-03-13 21:10:58 I/ConsoleReporter: [38/38 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerUserRestrictionTest#testMuteMicrophone_changeVolume_disallowUnmuteMicrophone pass
-03-13 21:10:58 D/ModuleListener: ModuleListener.testRunEnded(30425, {})
-03-13 21:10:58 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 30s. 37 passed, 1 failed, 0 not executed
-03-13 21:10:58 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.devicepolicy.DeviceAdminTest, 1)
-03-13 21:10:58 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 39 tests
-03-13 21:10:58 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceAdminTest#testDevicePolicyManagerTest()
-03-13 21:10:58 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceAdminTest#testDevicePolicyManagerTest)
-03-13 21:11:00 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:00 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:00 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceAdminTest#testDevicePolicyManagerTest, {})
-03-13 21:11:00 I/ConsoleReporter: [39/39 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceAdminTest#testDevicePolicyManagerTest pass
-03-13 21:11:00 D/ModuleListener: ModuleListener.testRunEnded(2335, {})
-03-13 21:11:00 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 2s. 38 passed, 1 failed, 0 not executed
-03-13 21:11:00 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest, 9)
-03-13 21:11:00 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 48 tests
-03-13 21:11:00 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testDeviceOwnerSetup()
-03-13 21:11:00 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testDeviceOwnerSetup)
-03-13 21:11:03 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:03 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:03 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testDeviceOwnerSetup, {})
-03-13 21:11:03 I/ConsoleReporter: [40/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testDeviceOwnerSetup pass
-03-13 21:11:03 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testBackup()
-03-13 21:11:03 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testBackup)
-03-13 21:11:05 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:05 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:05 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testBackup, {})
-03-13 21:11:05 I/ConsoleReporter: [41/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testBackup pass
-03-13 21:11:05 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testDevicePolicyManager()
-03-13 21:11:05 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testDevicePolicyManager)
-03-13 21:11:07 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:07 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:07 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testDevicePolicyManager, {})
-03-13 21:11:07 I/ConsoleReporter: [42/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testDevicePolicyManager pass
-03-13 21:11:07 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitAccessibilityServices()
-03-13 21:11:07 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitAccessibilityServices)
-03-13 21:11:10 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:10 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:10 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitAccessibilityServices, {})
-03-13 21:11:10 I/ConsoleReporter: [43/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitAccessibilityServices pass
-03-13 21:11:10 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitInputMethods()
-03-13 21:11:10 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitInputMethods)
-03-13 21:11:12 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:12 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:12 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitInputMethods, {})
-03-13 21:11:12 I/ConsoleReporter: [44/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testPermitInputMethods pass
-03-13 21:11:12 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyStaticProxyTest()
-03-13 21:11:12 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyStaticProxyTest)
-03-13 21:11:14 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:14 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:14 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyStaticProxyTest, {})
-03-13 21:11:14 I/ConsoleReporter: [45/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyStaticProxyTest pass
-03-13 21:11:14 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest()
-03-13 21:11:14 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest)
-03-13 21:11:17 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:17 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:17 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest, {})
-03-13 21:11:17 I/ConsoleReporter: [46/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testProxyPacProxyTest pass
-03-13 21:11:17 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testFactoryResetProtection()
-03-13 21:11:17 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testFactoryResetProtection)
-03-13 21:11:19 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:19 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:19 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testFactoryResetProtection, {})
-03-13 21:11:19 I/ConsoleReporter: [47/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testFactoryResetProtection pass
-03-13 21:11:19 D/DeviceTestCase: Running com.google.android.gts.devicepolicy.DeviceOwnerTest#testNotifySystemUpdate()
-03-13 21:11:19 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.devicepolicy.DeviceOwnerTest#testNotifySystemUpdate)
-03-13 21:11:21 I/XtsHostTestBase: Output for command pm list features: feature:reqGlEsVersion=0x30000
-feature:android.hardware.audio.low_latency
-feature:android.hardware.audio.output
-feature:android.hardware.audio.pro
-feature:android.hardware.bluetooth
-feature:android.hardware.bluetooth_le
-feature:android.hardware.camera
-feature:android.hardware.camera.any
-feature:android.hardware.camera.front
-feature:android.hardware.faketouch
-feature:android.hardware.location
-feature:android.hardware.location.network
-feature:android.hardware.microphone
-feature:android.hardware.screen.landscape
-feature:android.hardware.screen.portrait
-feature:android.hardware.sensor.accelerometer
-feature:android.hardware.sensor.compass
-feature:android.hardware.sensor.gyroscope
-feature:android.hardware.touchscreen
-feature:android.hardware.touchscreen.multitouch
-feature:android.hardware.touchscreen.multitouch.distinct
-feature:android.hardware.touchscreen.multitouch.jazzhand
-feature:android.hardware.wifi
-feature:android.software.backup
-feature:android.software.freeform_window_management
-feature:android.software.print
-feature:android.software.voice_recognizers
-feature:android.software.webview
-feature:com.google.android.feature.GOOGLE_BUILD
-feature:com.google.android.feature.GOOGLE_EXPERIENCE
-feature:org.chromium.arc
-feature:org.chromium.arc.device_management
-
-03-13 21:11:21 I/XtsHostTestBase: Device doesn't have required feature android.software.device_admin. Tests won't run.
-03-13 21:11:21 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.devicepolicy.DeviceOwnerTest#testNotifySystemUpdate, {})
-03-13 21:11:21 I/ConsoleReporter: [48/48 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.devicepolicy.DeviceOwnerTest#testNotifySystemUpdate pass
-03-13 21:11:21 D/ModuleListener: ModuleListener.testRunEnded(21020, {})
-03-13 21:11:21 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 21s. 47 passed, 1 failed, 0 not executed
-03-13 21:11:21 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.trust.TrustHostTest, 12)
-03-13 21:11:21 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 60 tests
-03-13 21:11:21 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toTrue()
-03-13 21:11:21 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toTrue)
-03-13 21:11:23 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:23 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:25 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testSetManagingTrust_toTrue com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:11:26 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testSetManagingTrust_toTrue: PASSED
-03-13 21:11:26 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:11:27 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toTrue, {})
-03-13 21:11:27 I/ConsoleReporter: [49/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toTrue pass
-03-13 21:11:27 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toFalse()
-03-13 21:11:27 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toFalse)
-03-13 21:11:28 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:28 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:30 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testSetManagingTrust_toFalse com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:11:31 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testSetManagingTrust_toFalse: PASSED
-03-13 21:11:31 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:11:32 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toFalse, {})
-03-13 21:11:32 I/ConsoleReporter: [50/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestSetManagingTrust_toFalse pass
-03-13 21:11:32 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_Indefinitely()
-03-13 21:11:32 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_Indefinitely)
-03-13 21:11:33 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:34 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:35 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testGrantTrust_Indefinitely com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:11:36 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testGrantTrust_Indefinitely: PASSED
-03-13 21:11:36 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:11:37 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_Indefinitely, {})
-03-13 21:11:37 I/ConsoleReporter: [51/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_Indefinitely pass
-03-13 21:11:37 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30Seconds()
-03-13 21:11:37 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30Seconds)
-03-13 21:11:39 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:39 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:40 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testGrantTrust_For30Seconds com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:11:41 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testGrantTrust_For30Seconds: PASSED
-03-13 21:11:41 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:11:42 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30Seconds, {})
-03-13 21:11:42 I/ConsoleReporter: [52/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30Seconds pass
-03-13 21:11:42 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30SecondsAndInitiatedByUser()
-03-13 21:11:42 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30SecondsAndInitiatedByUser)
-03-13 21:11:44 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:44 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:45 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testGrantTrust_For30SecondsAndInitiatedByUser com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:11:46 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testGrantTrust_For30SecondsAndInitiatedByUser: PASSED
-03-13 21:11:46 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:11:47 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30SecondsAndInitiatedByUser, {})
-03-13 21:11:47 I/ConsoleReporter: [53/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_For30SecondsAndInitiatedByUser pass
-03-13 21:11:47 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_failsIfNotManagingTrust()
-03-13 21:11:47 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_failsIfNotManagingTrust)
-03-13 21:11:48 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:49 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:50 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testGrantTrust_failsIfNotManagingTrust com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:11:51 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testGrantTrust_failsIfNotManagingTrust: PASSED
-03-13 21:11:51 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:11:52 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_failsIfNotManagingTrust, {})
-03-13 21:11:52 I/ConsoleReporter: [54/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestGrantTrust_failsIfNotManagingTrust pass
-03-13 21:11:52 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_withoutGrantingItFirst()
-03-13 21:11:52 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_withoutGrantingItFirst)
-03-13 21:11:54 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:54 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:56 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_withoutGrantingItFirst com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:11:57 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_withoutGrantingItFirst: PASSED
-03-13 21:11:57 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:11:58 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_withoutGrantingItFirst, {})
-03-13 21:11:58 I/ConsoleReporter: [55/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_withoutGrantingItFirst pass
-03-13 21:11:58 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_afterGrantingItFirst()
-03-13 21:11:58 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_afterGrantingItFirst)
-03-13 21:11:59 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:11:59 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:01 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_afterGrantingItFirst com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:02 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_afterGrantingItFirst: PASSED
-03-13 21:12:02 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:12:03 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_afterGrantingItFirst, {})
-03-13 21:12:03 I/ConsoleReporter: [56/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_afterGrantingItFirst pass
-03-13 21:12:03 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_succeedsEvenIfNotManagingTrust()
-03-13 21:12:03 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_succeedsEvenIfNotManagingTrust)
-03-13 21:12:04 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:04 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:06 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_succeedsEvenIfNotManagingTrust com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:07 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testRevokeTrust_succeedsEvenIfNotManagingTrust: PASSED
-03-13 21:12:07 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:12:08 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_succeedsEvenIfNotManagingTrust, {})
-03-13 21:12:08 I/ConsoleReporter: [57/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestRevokeTrust_succeedsEvenIfNotManagingTrust pass
-03-13 21:12:08 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_success()
-03-13 21:12:08 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_success)
-03-13 21:12:09 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:09 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:11 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testUnlockAttempt_success com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:12 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testUnlockAttempt_success: PASSED
-03-13 21:12:12 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:12:13 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_success, {})
-03-13 21:12:13 I/ConsoleReporter: [58/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_success pass
-03-13 21:12:13 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_failure()
-03-13 21:12:13 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_failure)
-03-13 21:12:15 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:15 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:17 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testUnlockAttempt_failure com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:18 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testUnlockAttempt_failure: PASSED
-03-13 21:12:18 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:12:18 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_failure, {})
-03-13 21:12:18 I/ConsoleReporter: [59/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestUnlockAttempt_failure pass
-03-13 21:12:18 D/DeviceTestCase: Running com.google.android.gts.trust.TrustHostTest#testTestServiceTestCaseSetUpProperly()
-03-13 21:12:18 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.trust.TrustHostTest#testTestServiceTestCaseSetUpProperly)
-03-13 21:12:20 D/GtsGmsCoreTrustTestApp.apk: Uploading GtsGmsCoreTrustTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:20 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:22 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.trust.TrustAgentTests#testServiceTestCaseSetUpProperly com.google.android.gts.trust/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:22 I/XtsHostTestBase: Test com.google.android.gts.trust.TrustAgentTests#testServiceTestCaseSetUpProperly: PASSED
-03-13 21:12:22 D/TestDevice: Uninstalling com.google.android.gts.trust
-03-13 21:12:23 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.trust.TrustHostTest#testTestServiceTestCaseSetUpProperly, {})
-03-13 21:12:23 I/ConsoleReporter: [60/60 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.trust.TrustHostTest#testTestServiceTestCaseSetUpProperly pass
-03-13 21:12:23 D/ModuleListener: ModuleListener.testRunEnded(62156, {})
-03-13 21:12:23 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 1m 2s. 59 passed, 1 failed, 0 not executed
-03-13 21:12:23 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.backup.SettingsProviderBackupHostTest, 1)
-03-13 21:12:23 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 61 tests
-03-13 21:12:23 D/DeviceTestCase: Running com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR()
-03-13 21:12:23 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR)
-03-13 21:12:25 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:25 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:27 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.SettingsProviderBackupTest#testSoftApE2EBR com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:28 I/XtsHostTestBase: Test com.google.android.gts.backup.SettingsProviderBackupTest#testSoftApE2EBR: FAILURE
-03-13 21:12:28 W/XtsHostTestBase: java.lang.NullPointerException: Attempt to read from field 'java.lang.String android.net.wifi.WifiConfiguration.SSID' on a null object reference

-at com.google.android.gts.backup.SettingsProviderBackupTest.setTempData(SettingsProviderBackupTest.java:75)

-at com.google.android.gts.backup.AbstractBackupRestoreE2ETest.runE2ETest(AbstractBackupRestoreE2ETest.java:107)

-at com.google.android.gts.backup.SettingsProviderBackupTest.testSoftApE2EBR(SettingsProviderBackupTest.java:66)

-at android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:220)

-at android.test.InstrumentationTestCase.runTest(InstrumentationTestCase.java:205)

-at android.test.ActivityInstrumentationTestCase2.runTest(ActivityInstrumentationTestCase2.java:192)

-at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:198)

-at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:183)

-at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:560)

-at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1925)

-
-03-13 21:12:28 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:12:29 D/ModuleListener: ModuleListener.testFailed(com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR, junit.framework.AssertionFailedError: testSoftApE2EBR failed.
-	at junit.framework.Assert.fail(Assert.java:50)
-	at junit.framework.Assert.assertTrue(Assert.java:20)
-	at com.google.android.gts.backup.SettingsProviderBackupHostTest.testSoftApE2EBR(SettingsProviderBackupHostTest.java:62)
-	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:497)
-	at junit.framework.TestCase.runTest(TestCase.java:168)
-	at junit.framework.TestCase.runBare(TestCase.java:134)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-)
-03-13 21:12:29 I/ConsoleReporter: [61/61 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR fail: junit.framework.AssertionFailedError: testSoftApE2EBR failed.
-	at junit.framework.Assert.fail(Assert.java:50)
-	at junit.framework.Assert.assertTrue(Assert.java:20)
-	at com.google.android.gts.backup.SettingsProviderBackupHostTest.testSoftApE2EBR(SettingsProviderBackupHostTest.java:62)
-	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:497)
-	at junit.framework.TestCase.runTest(TestCase.java:168)
-	at junit.framework.TestCase.runBare(TestCase.java:134)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-
-03-13 21:12:29 I/FailureListener: FailureListener.testFailed com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR false false false
-03-13 21:12:29 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.SettingsProviderBackupHostTest#testSoftApE2EBR, {})
-03-13 21:12:29 D/ModuleListener: ModuleListener.testRunEnded(5500, {})
-03-13 21:12:29 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 5s. 59 passed, 2 failed, 0 not executed
-03-13 21:12:29 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.backup.BackupManagerHostTest, 6)
-03-13 21:12:29 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 67 tests
-03-13 21:12:29 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_multiplePackages()
-03-13 21:12:29 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_multiplePackages)
-03-13 21:12:30 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:31 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:33 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_multiplePackages com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:34 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_multiplePackages: PASSED
-03-13 21:12:34 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:12:35 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_multiplePackages, {})
-03-13 21:12:35 I/ConsoleReporter: [62/67 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_multiplePackages pass
-03-13 21:12:35 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testIsAppEligibleForBackup()
-03-13 21:12:35 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testIsAppEligibleForBackup)
-03-13 21:12:36 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:37 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:39 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testIsAppEligibleForBackup com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:40 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testIsAppEligibleForBackup: PASSED
-03-13 21:12:40 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:12:41 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testIsAppEligibleForBackup, {})
-03-13 21:12:41 I/ConsoleReporter: [63/67 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testIsAppEligibleForBackup pass
-03-13 21:12:41 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_noPackages()
-03-13 21:12:41 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_noPackages)
-03-13 21:12:42 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:42 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:44 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_noPackages com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:45 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_noPackages: PASSED
-03-13 21:12:45 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:12:46 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_noPackages, {})
-03-13 21:12:46 I/ConsoleReporter: [64/67 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_noPackages pass
-03-13 21:12:46 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_badTransport()
-03-13 21:12:46 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_badTransport)
-03-13 21:12:48 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:48 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:50 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_badTransport com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:51 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_badTransport: PASSED
-03-13 21:12:51 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:12:52 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_badTransport, {})
-03-13 21:12:52 I/ConsoleReporter: [65/67 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_badTransport pass
-03-13 21:12:52 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_success()
-03-13 21:12:52 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_success)
-03-13 21:12:54 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:54 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:56 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_success com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:12:57 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_success: PASSED
-03-13 21:12:57 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:12:58 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_success, {})
-03-13 21:12:58 I/ConsoleReporter: [66/67 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_success pass
-03-13 21:12:58 D/DeviceTestCase: Running com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_fails()
-03-13 21:12:58 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_fails)
-03-13 21:12:59 D/GtsGmsCoreBackupTestApp.apk: Uploading GtsGmsCoreBackupTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:12:59 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:01 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.backup.BackupManagerTest#testRequestBackup_fails com.google.android.gts.backup/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:13:02 I/XtsHostTestBase: Test com.google.android.gts.backup.BackupManagerTest#testRequestBackup_fails: PASSED
-03-13 21:13:02 D/TestDevice: Uninstalling com.google.android.gts.backup
-03-13 21:13:03 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_fails, {})
-03-13 21:13:03 I/ConsoleReporter: [67/67 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupManagerHostTest#testRequestBackup_fails pass
-03-13 21:13:03 D/ModuleListener: ModuleListener.testRunEnded(34457, {})
-03-13 21:13:03 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 34s. 65 passed, 2 failed, 0 not executed
-03-13 21:13:03 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.backup.BackupHostTest, 1)
-03-13 21:13:03 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 68 tests
-03-13 21:13:03 D/DeviceTestCase: Running com.google.android.gts.backup.BackupHostTest#testGmsBackupTransportIsDefault()
-03-13 21:13:03 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.backup.BackupHostTest#testGmsBackupTransportIsDefault)
-03-13 21:13:05 I/AndroidNativeDevice: Rebooting device chromeos2-row4-rack7-host11:22
-03-13 21:13:05 I/TestDevice: framework reboot is not supported; when enable root is disabled
-03-13 21:13:05 I/AndroidNativeDeviceStateMonitor: Waiting for device chromeos2-row4-rack7-host11:22 to be NOT_AVAILABLE; it is currently ONLINE...
-03-13 21:13:05 I/AndroidNativeDeviceStateMonitor: Waiting for device chromeos2-row4-rack7-host11:22 to be ONLINE; it is currently NOT_AVAILABLE...
-03-13 21:13:05 D/BackgroundDeviceAction: Sleep for 5000 before starting logcat for chromeos2-row4-rack7-host11:22.
-03-13 21:13:10 D/BackgroundDeviceAction: Waiting for device chromeos2-row4-rack7-host11:22 online before starting.
-03-13 21:13:19 I/AndroidNativeDevice: "enable-root" set to false; ignoring 'adb root' request
-03-13 21:13:19 I/AndroidNativeDevice: root is required for encryption
-03-13 21:13:19 I/AndroidNativeDeviceStateMonitor: Device chromeos2-row4-rack7-host11:22 is already ONLINE
-03-13 21:13:19 I/AndroidNativeDeviceStateMonitor: Waiting 600000 ms for device chromeos2-row4-rack7-host11:22 boot complete
-03-13 21:13:19 I/DeviceStateMonitor: Waiting 599928 ms for device chromeos2-row4-rack7-host11:22 package manager
-03-13 21:13:20 I/AndroidNativeDeviceStateMonitor: Waiting 599032 ms for device chromeos2-row4-rack7-host11:22 external store
-03-13 21:13:20 D/BackgroundDeviceAction: Device chromeos2-row4-rack7-host11:22 now online.
-03-13 21:13:20 D/BackgroundDeviceAction: Starting logcat for chromeos2-row4-rack7-host11:22.
-03-13 21:13:21 I/AndroidNativeDevice: "enable-root" set to false; ignoring 'adb root' request
-03-13 21:13:21 I/TestDevice: Attempting to disable keyguard on chromeos2-row4-rack7-host11:22 using input keyevent 82
-03-13 21:13:22 V/BackupHostTest: Rebooting done
-03-13 21:13:22 V/BackupHostTest: Output for command bmgr list transports:
-    android/com.android.internal.backup.LocalTransport
-  * com.google.android.gms/.backup.BackupTransportService
-
-03-13 21:13:22 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.backup.BackupHostTest#testGmsBackupTransportIsDefault, {})
-03-13 21:13:22 I/ConsoleReporter: [68/68 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.backup.BackupHostTest#testGmsBackupTransportIsDefault pass
-03-13 21:13:22 D/ModuleListener: ModuleListener.testRunEnded(18888, {})
-03-13 21:13:22 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 18s. 66 passed, 2 failed, 0 not executed
-03-13 21:13:22 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.bluetooth.BluetoothHostTest, 2)
-03-13 21:13:22 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 70 tests
-03-13 21:13:22 D/DeviceTestCase: Running com.google.android.gts.bluetooth.BluetoothHostTest#testMessageAccessPermission()
-03-13 21:13:22 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.bluetooth.BluetoothHostTest#testMessageAccessPermission)
-03-13 21:13:24 D/GtsGmsCoreBluetoothTestApp.apk: Uploading GtsGmsCoreBluetoothTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:24 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:28 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.bluetooth.SystemBluetoothTest#testMessageAccessPermission com.google.android.gts.bluetooth/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:13:35 I/XtsHostTestBase: Test com.google.android.gts.bluetooth.SystemBluetoothTest#testMessageAccessPermission: PASSED
-03-13 21:13:35 D/TestDevice: Uninstalling com.google.android.gts.bluetooth
-03-13 21:13:36 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.bluetooth.BluetoothHostTest#testMessageAccessPermission, {})
-03-13 21:13:36 I/ConsoleReporter: [69/70 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.bluetooth.BluetoothHostTest#testMessageAccessPermission pass
-03-13 21:13:36 D/DeviceTestCase: Running com.google.android.gts.bluetooth.BluetoothHostTest#testPhonebookAccessPermission()
-03-13 21:13:36 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.bluetooth.BluetoothHostTest#testPhonebookAccessPermission)
-03-13 21:13:38 D/GtsGmsCoreBluetoothTestApp.apk: Uploading GtsGmsCoreBluetoothTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:38 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:40 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.bluetooth.SystemBluetoothTest#testPhonebookAccessPermission com.google.android.gts.bluetooth/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:13:47 I/XtsHostTestBase: Test com.google.android.gts.bluetooth.SystemBluetoothTest#testPhonebookAccessPermission: PASSED
-03-13 21:13:47 D/TestDevice: Uninstalling com.google.android.gts.bluetooth
-03-13 21:13:48 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.bluetooth.BluetoothHostTest#testPhonebookAccessPermission, {})
-03-13 21:13:48 I/ConsoleReporter: [70/70 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.bluetooth.BluetoothHostTest#testPhonebookAccessPermission pass
-03-13 21:13:48 D/ModuleListener: ModuleListener.testRunEnded(25889, {})
-03-13 21:13:48 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 25s. 68 passed, 2 failed, 0 not executed
-03-13 21:13:48 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.gts.wifi.WifiHostTest, 19)
-03-13 21:13:48 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] Continuing armeabi-v7a GtsGmscoreHostTestCases with 89 tests
-03-13 21:13:48 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testParceling()
-03-13 21:13:48 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testParceling)
-03-13 21:13:50 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:50 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:51 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testParceling com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:13:52 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testParceling: PASSED
-03-13 21:13:52 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:13:53 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testParceling, {})
-03-13 21:13:53 I/ConsoleReporter: [71/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testParceling pass
-03-13 21:13:53 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_hex()
-03-13 21:13:53 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_hex)
-03-13 21:13:55 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:55 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:13:57 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testValidWifiKey_hex com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:13:58 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testValidWifiKey_hex: PASSED
-03-13 21:13:58 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:13:58 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_hex, {})
-03-13 21:13:58 I/ConsoleReporter: [72/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_hex pass
-03-13 21:13:58 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_empty()
-03-13 21:13:58 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_empty)
-03-13 21:14:00 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:00 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:02 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_empty com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:03 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_empty: PASSED
-03-13 21:14:03 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:04 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_empty, {})
-03-13 21:14:04 I/ConsoleReporter: [73/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_empty pass
-03-13 21:14:04 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_unquotedUtf8()
-03-13 21:14:04 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_unquotedUtf8)
-03-13 21:14:05 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:05 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:07 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_unquotedUtf8 com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:08 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_unquotedUtf8: PASSED
-03-13 21:14:08 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:09 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_unquotedUtf8, {})
-03-13 21:14:09 I/ConsoleReporter: [74/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_unquotedUtf8 pass
-03-13 21:14:09 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_utf8()
-03-13 21:14:09 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_utf8)
-03-13 21:14:11 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:11 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:13 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testValidWifiKey_utf8 com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:14 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testValidWifiKey_utf8: PASSED
-03-13 21:14:14 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:15 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_utf8, {})
-03-13 21:14:15 I/ConsoleReporter: [75/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testValidWifiKey_utf8 pass
-03-13 21:14:15 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_invalidHex()
-03-13 21:14:15 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_invalidHex)
-03-13 21:14:16 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:16 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:18 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_invalidHex com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:19 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_invalidHex: PASSED
-03-13 21:14:19 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:20 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_invalidHex, {})
-03-13 21:14:20 I/ConsoleReporter: [76/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_invalidHex pass
-03-13 21:14:20 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_shortBssid()
-03-13 21:14:20 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_shortBssid)
-03-13 21:14:21 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:22 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:23 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_shortBssid com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:24 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_shortBssid: PASSED
-03-13 21:14:24 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:25 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_shortBssid, {})
-03-13 21:14:25 I/ConsoleReporter: [77/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_shortBssid pass
-03-13 21:14:25 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_longBssid()
-03-13 21:14:25 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_longBssid)
-03-13 21:14:27 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:27 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:28 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_longBssid com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:29 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkKeyTest#testInvalidWifiKey_longBssid: PASSED
-03-13 21:14:29 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:30 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_longBssid, {})
-03-13 21:14:30 I/ConsoleReporter: [78/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testInvalidWifiKey_longBssid pass
-03-13 21:14:30 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testNetworkScoreManager()
-03-13 21:14:30 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testNetworkScoreManager)
-03-13 21:14:32 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:32 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:34 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.NetworkScoreManagerTest#testNetworkScoreManager com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:34 I/XtsHostTestBase: Test com.google.android.gts.wifi.NetworkScoreManagerTest#testNetworkScoreManager: PASSED
-03-13 21:14:34 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:35 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testNetworkScoreManager, {})
-03-13 21:14:35 I/ConsoleReporter: [79/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testNetworkScoreManager pass
-03-13 21:14:35 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testLookupScore_constantCurve()
-03-13 21:14:35 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testLookupScore_constantCurve)
-03-13 21:14:37 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:37 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:39 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.RssiCurveTest#testLookupScore_constantCurve com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:40 I/XtsHostTestBase: Test com.google.android.gts.wifi.RssiCurveTest#testLookupScore_constantCurve: PASSED
-03-13 21:14:40 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:40 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testLookupScore_constantCurve, {})
-03-13 21:14:40 I/ConsoleReporter: [80/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testLookupScore_constantCurve pass
-03-13 21:14:40 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testLookupScore_changingCurve()
-03-13 21:14:40 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testLookupScore_changingCurve)
-03-13 21:14:42 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:42 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:44 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.RssiCurveTest#testLookupScore_changingCurve com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:14:45 I/XtsHostTestBase: Test com.google.android.gts.wifi.RssiCurveTest#testLookupScore_changingCurve: PASSED
-03-13 21:14:45 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:14:46 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testLookupScore_changingCurve, {})
-03-13 21:14:46 I/ConsoleReporter: [81/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testLookupScore_changingCurve pass
-03-13 21:14:46 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks()
-03-13 21:14:46 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks)
-03-13 21:14:47 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:47 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:14:49 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiManagerTest#testGetPrivilegedConfiguredNetworks com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:15:00 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiManagerTest#testGetPrivilegedConfiguredNetworks: FAILURE
-03-13 21:15:00 W/XtsHostTestBase: junit.framework.AssertionFailedError

-at com.google.android.gts.wifi.WifiManagerTest.testGetPrivilegedConfiguredNetworks(WifiManagerTest.java:109)

-at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:198)

-at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:183)

-at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:560)

-at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1925)

-
-03-13 21:15:00 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:15:01 D/ModuleListener: ModuleListener.testFailed(com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks, junit.framework.AssertionFailedError: testGetPrivilegedConfiguredNetworks failed.
-	at junit.framework.Assert.fail(Assert.java:50)
-	at junit.framework.Assert.assertTrue(Assert.java:20)
-	at com.google.android.gts.wifi.WifiHostTest.runTest(WifiHostTest.java:138)
-	at com.google.android.gts.wifi.WifiHostTest.testGetPrivilegedConfiguredNetworks(WifiHostTest.java:104)
-	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:497)
-	at junit.framework.TestCase.runTest(TestCase.java:168)
-	at junit.framework.TestCase.runBare(TestCase.java:134)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-)
-03-13 21:15:01 I/ConsoleReporter: [82/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks fail: junit.framework.AssertionFailedError: testGetPrivilegedConfiguredNetworks failed.
-	at junit.framework.Assert.fail(Assert.java:50)
-	at junit.framework.Assert.assertTrue(Assert.java:20)
-	at com.google.android.gts.wifi.WifiHostTest.runTest(WifiHostTest.java:138)
-	at com.google.android.gts.wifi.WifiHostTest.testGetPrivilegedConfiguredNetworks(WifiHostTest.java:104)
-	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
-	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:497)
-	at junit.framework.TestCase.runTest(TestCase.java:168)
-	at junit.framework.TestCase.runBare(TestCase.java:134)
-	at com.android.tradefed.testtype.DeviceTestResult$1.protect(DeviceTestResult.java:81)
-	at com.android.tradefed.testtype.DeviceTestResult.runProtected(DeviceTestResult.java:56)
-	at com.android.tradefed.testtype.DeviceTestResult.run(DeviceTestResult.java:85)
-	at junit.framework.TestCase.run(TestCase.java:124)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:180)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:55)
-	at com.android.tradefed.testtype.JUnitRunUtil.runTest(JUnitRunUtil.java:38)
-	at com.android.tradefed.testtype.DeviceTestCase.run(DeviceTestCase.java:144)
-	at com.android.tradefed.testtype.HostTest.run(HostTest.java:253)
-	at com.android.compatibility.common.tradefed.testtype.ModuleDef.run(ModuleDef.java:244)
-	at com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:426)
-	at com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
-	at com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
-	at com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
-	at com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
-	at com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
-
-03-13 21:15:01 I/FailureListener: FailureListener.testFailed com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks false false false
-03-13 21:15:01 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testGetPrivilegedConfiguredNetworks, {})
-03-13 21:15:01 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testWifiApStateChangeIntent()
-03-13 21:15:01 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testWifiApStateChangeIntent)
-03-13 21:15:02 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:02 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:04 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiManagerTest#testWifiApStateChangeIntent com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:15:15 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiManagerTest#testWifiApStateChangeIntent: PASSED
-03-13 21:15:15 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:15:16 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testWifiApStateChangeIntent, {})
-03-13 21:15:16 I/ConsoleReporter: [83/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testWifiApStateChangeIntent pass
-03-13 21:15:16 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_nullBuckets()
-03-13 21:15:16 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_nullBuckets)
-03-13 21:15:18 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:18 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:20 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.ScoredNetworkTest#testInvalidCurve_nullBuckets com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:15:20 I/XtsHostTestBase: Test com.google.android.gts.wifi.ScoredNetworkTest#testInvalidCurve_nullBuckets: PASSED
-03-13 21:15:20 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:15:21 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_nullBuckets, {})
-03-13 21:15:21 I/ConsoleReporter: [84/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_nullBuckets pass
-03-13 21:15:21 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_emptyBuckets()
-03-13 21:15:21 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_emptyBuckets)
-03-13 21:15:23 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:23 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:25 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.ScoredNetworkTest#testInvalidCurve_emptyBuckets com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:15:26 I/XtsHostTestBase: Test com.google.android.gts.wifi.ScoredNetworkTest#testInvalidCurve_emptyBuckets: PASSED
-03-13 21:15:26 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:15:27 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_emptyBuckets, {})
-03-13 21:15:27 I/ConsoleReporter: [85/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testTestInvalidCurve_emptyBuckets pass
-03-13 21:15:27 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testTestParceling()
-03-13 21:15:27 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testTestParceling)
-03-13 21:15:28 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:28 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:30 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.ScoredNetworkTest#testParceling com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:15:31 I/XtsHostTestBase: Test com.google.android.gts.wifi.ScoredNetworkTest#testParceling: PASSED
-03-13 21:15:31 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:15:32 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testTestParceling, {})
-03-13 21:15:32 I/ConsoleReporter: [86/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testTestParceling pass
-03-13 21:15:32 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotTimestamp()
-03-13 21:15:32 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotTimestamp)
-03-13 21:15:34 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:34 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:35 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiScannerTest#testOneShotScanTimestamp com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:15:36 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiScannerTest#testOneShotScanTimestamp: PASSED
-03-13 21:15:36 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:15:37 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotTimestamp, {})
-03-13 21:15:37 I/ConsoleReporter: [87/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotTimestamp pass
-03-13 21:15:37 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotChannels()
-03-13 21:15:37 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotChannels)
-03-13 21:15:39 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:39 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:41 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiScannerTest#testOneShotScanChannels com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:15:42 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiScannerTest#testOneShotScanChannels: PASSED
-03-13 21:15:42 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:15:43 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotChannels, {})
-03-13 21:15:43 I/ConsoleReporter: [88/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testWifiScannerOneShotChannels pass
-03-13 21:15:43 D/DeviceTestCase: Running com.google.android.gts.wifi.WifiHostTest#testWifiScannerBatchTimestamp()
-03-13 21:15:43 D/ModuleListener: ModuleListener.testStarted(com.google.android.gts.wifi.WifiHostTest#testWifiScannerBatchTimestamp)
-03-13 21:15:44 D/GtsGmsCoreWifiTestApp.apk: Uploading GtsGmsCoreWifiTestApp.apk onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:44 D/Device: Uploading file onto device 'chromeos2-row4-rack7-host11:22'
-03-13 21:15:46 I/RemoteAndroidTest: Running am instrument -w -r   -e class com.google.android.gts.wifi.WifiScannerTest#testBatchScanTimestampOrder com.google.android.gts.wifi/android.test.InstrumentationTestRunner on google-reef-chromeos2-row4-rack7-host11:22
-03-13 21:15:47 I/XtsHostTestBase: Test com.google.android.gts.wifi.WifiScannerTest#testBatchScanTimestampOrder: PASSED
-03-13 21:15:47 D/TestDevice: Uninstalling com.google.android.gts.wifi
-03-13 21:15:48 D/ModuleListener: ModuleListener.testEnded(com.google.android.gts.wifi.WifiHostTest#testWifiScannerBatchTimestamp, {})
-03-13 21:15:48 I/ConsoleReporter: [89/89 armeabi-v7a GtsGmscoreHostTestCases chromeos2-row4-rack7-host11:22] com.google.android.gts.wifi.WifiHostTest#testWifiScannerBatchTimestamp pass
-03-13 21:15:48 D/ModuleListener: ModuleListener.testRunEnded(119708, {})
-03-13 21:15:48 I/ConsoleReporter: [chromeos2-row4-rack7-host11:22] armeabi-v7a GtsGmscoreHostTestCases completed in 1m 59s. 86 passed, 3 failed, 0 not executed
-03-13 21:15:48 W/CompatibilityTest: Inaccurate runtime hint for armeabi-v7a GtsGmscoreHostTestCases, expected 1m 0s was 6m 47s
-03-13 21:15:48 I/CompatibilityTest: Running system status checker after module execution: GtsGmscoreHostTestCases
-03-13 21:15:49 I/MonitoringUtils: Connectivity: passed check.
-03-13 21:15:49 D/RunUtil: run interrupt allowed: false
-03-13 21:15:50 I/ResultReporter: Invocation finished in 13m 58s. PASSED: 172, FAILED: 6, NOT EXECUTED: 0, MODULES: 2 of 2
-03-13 21:15:50 I/ResultReporter: Test Result: /tmp/autotest-tradefed-install_3AXF9w/3b26794769c6c72bdeb40572f2c1e674/gts-4.1_r1-3556119/android-gts/results/2017.03.13_21.01.52/test_result.xml
-03-13 21:15:50 I/ResultReporter: Full Result: /tmp/autotest-tradefed-install_3AXF9w/3b26794769c6c72bdeb40572f2c1e674/gts-4.1_r1-3556119/android-gts/results/2017.03.13_21.01.52.zip
diff --git a/server/cros/tradefed_test_unittest_data/GtsSearchHostTestCases.txt b/server/cros/tradefed_test_unittest_data/GtsSearchHostTestCases.txt
deleted file mode 100644
index 4b2b2a4..0000000
--- a/server/cros/tradefed_test_unittest_data/GtsSearchHostTestCases.txt
+++ /dev/null
@@ -1,59 +0,0 @@
-03-15 20:51:45 I/ModuleRepo: chromeos2-row5-rack10-host7:22 running 2 modules, expected to complete in 2m 0s
-03-15 20:51:45 I/CompatibilityTest: Starting 2 modules on chromeos2-row5-rack10-host7:22
-03-15 20:51:45 D/ConfigurationFactory: Loading configuration 'system-status-checkers'
-03-15 20:51:45 I/CompatibilityTest: Running system status checker before module execution: GtsSearchHostTestCases
-03-15 20:51:45 D/ModuleDef: Preparer: StubTargetPreparer
-03-15 20:51:45 D/TargetPreparer: skipping target prepare step
-03-15 20:51:45 D/ModuleDef: Test: JarHostTest
-03-15 20:51:45 D/BackgroundDeviceAction: Waiting for device chromeos2-row5-rack10-host7:22 online before starting.
-03-15 20:51:45 D/BackgroundDeviceAction: Device chromeos2-row5-rack10-host7:22 now online.
-03-15 20:51:45 D/BackgroundDeviceAction: Starting logcat for chromeos2-row5-rack10-host7:22.
-03-15 20:51:45 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.search.gts.SearchHostTest, 1)
-03-15 20:51:45 I/ConsoleReporter: [chromeos2-row5-rack10-host7:22] Starting x86 GtsSearchHostTestCases with 1 test
-03-15 20:51:45 D/DeviceTestCase: Running com.google.android.search.gts.SearchHostTest#testHotword()
-03-15 20:51:45 D/ModuleListener: ModuleListener.testStarted(com.google.android.search.gts.SearchHostTest#testHotword)
-03-15 20:51:46 D/ModuleListener: ModuleListener.testEnded(com.google.android.search.gts.SearchHostTest#testHotword, {})
-03-15 20:51:46 I/ConsoleReporter: [1/1 x86 GtsSearchHostTestCases chromeos2-row5-rack10-host7:22] com.google.android.search.gts.SearchHostTest#testHotword pass
-03-15 20:51:46 D/ModuleListener: ModuleListener.testRunEnded(1001, {})
-03-15 20:51:46 I/ConsoleReporter: [chromeos2-row5-rack10-host7:22] x86 GtsSearchHostTestCases completed in 1s. 1 passed, 0 failed, 0 not executed
-03-15 20:51:46 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.search.gts.GoogleSearchWidgetTest, 1)
-03-15 20:51:46 I/ConsoleReporter: [chromeos2-row5-rack10-host7:22] Continuing x86 GtsSearchHostTestCases with 2 tests
-03-15 20:51:46 D/DeviceTestCase: Running com.google.android.search.gts.GoogleSearchWidgetTest#testWidgetPresence()
-03-15 20:51:46 D/ModuleListener: ModuleListener.testStarted(com.google.android.search.gts.GoogleSearchWidgetTest#testWidgetPresence)
-03-15 20:51:47 D/ModuleListener: ModuleListener.testEnded(com.google.android.search.gts.GoogleSearchWidgetTest#testWidgetPresence, {})
-03-15 20:51:47 I/ConsoleReporter: [2/2 x86 GtsSearchHostTestCases chromeos2-row5-rack10-host7:22] com.google.android.search.gts.GoogleSearchWidgetTest#testWidgetPresence pass
-03-15 20:51:47 D/ModuleListener: ModuleListener.testRunEnded(953, {})
-03-15 20:51:47 I/ConsoleReporter: [chromeos2-row5-rack10-host7:22] x86 GtsSearchHostTestCases completed in 953 ms. 2 passed, 0 failed, 0 not executed
-03-15 20:51:47 W/CompatibilityTest: Inaccurate runtime hint for x86 GtsSearchHostTestCases, expected 1m 0s was 1s
-03-15 20:51:47 I/CompatibilityTest: Running system status checker after module execution: GtsSearchHostTestCases
-03-15 20:51:47 D/WifiUtil.apk5493596675121158066.apk: Uploading WifiUtil.apk5493596675121158066.apk onto device 'chromeos2-row5-rack10-host7:22'
-03-15 20:51:47 D/Device: Uploading file onto device 'chromeos2-row5-rack10-host7:22'
-03-15 20:51:49 I/MonitoringUtils: Connectivity: passed check.
-03-15 20:51:49 I/CompatibilityTest: Running system status checker before module execution: GtsSearchHostTestCases
-03-15 20:51:49 D/ModuleDef: Preparer: StubTargetPreparer
-03-15 20:51:49 D/TargetPreparer: skipping target prepare step
-03-15 20:51:49 D/ModuleDef: Test: JarHostTest
-03-15 20:51:49 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.search.gts.SearchHostTest, 1)
-03-15 20:51:49 I/ConsoleReporter: [chromeos2-row5-rack10-host7:22] Starting armeabi-v7a GtsSearchHostTestCases with 1 test
-03-15 20:51:49 D/DeviceTestCase: Running com.google.android.search.gts.SearchHostTest#testHotword()
-03-15 20:51:49 D/ModuleListener: ModuleListener.testStarted(com.google.android.search.gts.SearchHostTest#testHotword)
-03-15 20:51:50 D/ModuleListener: ModuleListener.testEnded(com.google.android.search.gts.SearchHostTest#testHotword, {})
-03-15 20:51:50 I/ConsoleReporter: [1/1 armeabi-v7a GtsSearchHostTestCases chromeos2-row5-rack10-host7:22] com.google.android.search.gts.SearchHostTest#testHotword pass
-03-15 20:51:50 D/ModuleListener: ModuleListener.testRunEnded(918, {})
-03-15 20:51:50 I/ConsoleReporter: [chromeos2-row5-rack10-host7:22] armeabi-v7a GtsSearchHostTestCases completed in 918 ms. 1 passed, 0 failed, 0 not executed
-03-15 20:51:50 D/ModuleListener: ModuleListener.testRunStarted(com.google.android.search.gts.GoogleSearchWidgetTest, 1)
-03-15 20:51:50 I/ConsoleReporter: [chromeos2-row5-rack10-host7:22] Continuing armeabi-v7a GtsSearchHostTestCases with 2 tests
-03-15 20:51:50 D/DeviceTestCase: Running com.google.android.search.gts.GoogleSearchWidgetTest#testWidgetPresence()
-03-15 20:51:50 D/ModuleListener: ModuleListener.testStarted(com.google.android.search.gts.GoogleSearchWidgetTest#testWidgetPresence)
-03-15 20:51:51 D/ModuleListener: ModuleListener.testEnded(com.google.android.search.gts.GoogleSearchWidgetTest#testWidgetPresence, {})
-03-15 20:51:51 I/ConsoleReporter: [2/2 armeabi-v7a GtsSearchHostTestCases chromeos2-row5-rack10-host7:22] com.google.android.search.gts.GoogleSearchWidgetTest#testWidgetPresence pass
-03-15 20:51:51 D/ModuleListener: ModuleListener.testRunEnded(973, {})
-03-15 20:51:51 I/ConsoleReporter: [chromeos2-row5-rack10-host7:22] armeabi-v7a GtsSearchHostTestCases completed in 973 ms. 2 passed, 0 failed, 0 not executed
-03-15 20:51:51 W/CompatibilityTest: Inaccurate runtime hint for armeabi-v7a GtsSearchHostTestCases, expected 1m 0s was 1s
-03-15 20:51:51 I/CompatibilityTest: Running system status checker after module execution: GtsSearchHostTestCases
-03-15 20:51:51 I/MonitoringUtils: Connectivity: passed check.
-03-15 20:51:51 D/RunUtil: run interrupt allowed: false
-03-15 20:51:51 W/BatteryFetcher: IOException getting battery level for device chromeos2-row5-rack10-host7:22: Unrecognized response to battery level queries
-03-15 20:51:55 I/ResultReporter: Invocation finished in 14s. PASSED: 4, FAILED: 0, NOT EXECUTED: 0, MODULES: 2 of 2
-03-15 20:51:55 I/ResultReporter: Test Result: /tmp/autotest-tradefed-install_9XGnX4/3b26794769c6c72bdeb40572f2c1e674/gts-4.1_r1-3556119/android-gts/results/2017.03.15_20.51.40/test_result.xml
-03-15 20:51:55 I/ResultReporter: Full Result: /tmp/autotest-tradefed-install_9XGnX4/3b26794769c6c72bdeb40572f2c1e674/gts-4.1_r1-3556119/android-gts/results/2017.03.15_20.51.40.zip
diff --git a/server/site_tests/cheets_CTS_N/cheets_CTS_N.py b/server/site_tests/cheets_CTS_N/cheets_CTS_N.py
index ae924b1..b86ec21 100644
--- a/server/site_tests/cheets_CTS_N/cheets_CTS_N.py
+++ b/server/site_tests/cheets_CTS_N/cheets_CTS_N.py
@@ -195,7 +195,7 @@
         if not datetime_id:
             # Parse stdout to obtain datetime of the session. This is needed to
             # locate result xml files and logs.
-            datetime_id = self._parse_tradefed_datetime_N(output, self.summary)
+            datetime_id = self._parse_tradefed_datetime_v2(output, self.summary)
         # Collect tradefed logs for autotest.
         tradefed = os.path.join(self._android_cts, 'android-cts')
         self._collect_logs(tradefed, datetime_id, result_destination)
diff --git a/server/site_tests/cheets_GTS/cheets_GTS.py b/server/site_tests/cheets_GTS/cheets_GTS.py
index 84a105f..fb138d3 100644
--- a/server/site_tests/cheets_GTS/cheets_GTS.py
+++ b/server/site_tests/cheets_GTS/cheets_GTS.py
@@ -14,7 +14,6 @@
 
 import logging
 import os
-import re
 
 from autotest_lib.client.common_lib import error
 from autotest_lib.server import utils
@@ -49,9 +48,7 @@
                 set, full GTS set will run.
         """
         self._target_package = target_package
-        #TODO(dhaddock): remove --skip-device-info with GTS 4.1_r2 (b/32889514)
-        return ['run', 'commandAndExit', 'gts', '--skip-device-info',
-                '--module', target_package]
+        return ['run', 'commandAndExit', 'gts', '--module', target_package]
 
 
     def _run_gts_tradefed(self, gts_tradefed_args):
@@ -84,7 +81,7 @@
 
         # Parse stdout to obtain datetime IDs of directories into which tradefed
         # wrote result xml files and logs.
-        datetime_id = self._parse_tradefed_datetime(output)
+        datetime_id = self._parse_tradefed_datetime_v2(output)
         repository = os.path.join(self._android_gts, 'android-gts')
         self._collect_logs(repository, datetime_id, result_destination)
 
@@ -102,25 +99,10 @@
         # All test has passed successfully, here.
         logging.info('The test has passed successfully.')
 
-    def _parse_tradefed_datetime(self, result):
-        """This parses the tradefed datetime object from the GTS output.
-        :param result: the tradefed result object
-        :return: the datetime
-        """
-        #TODO(dhaddock): Merge this into tradefed_test when N is working
-        match = re.search(r': Starting invocation for .+ (\S+) on device',
-                          result.stdout)
-        datetime_id = match.group(1)
-        logging.info('Tradefed identified results and logs with %s.',
-                     datetime_id)
-        return datetime_id
-
     def run_once(self, target_package=None, gts_tradefed_args=None):
         """Runs GTS target package exactly once."""
         with self._login_chrome():
-            self._connect_adb()
-            self._disable_adb_install_dialog()
-            self._wait_for_arc_boot()
+            self._ready_arc()
             if not gts_tradefed_args:
                 gts_tradefed_args = self._get_gts_test_args(target_package)
             self._run_gts_tradefed(gts_tradefed_args)