Commit eda01dc8 authored by achuith@chromium.org's avatar achuith@chromium.org

Disable failing android tests on cros.

BUG=None
TEST=manual
NOTRY=True

Review URL: https://codereview.chromium.org/164293002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251151 0039d316-1c4b-4281-b951-d872f2087c98
parent 5f45602c
......@@ -39,6 +39,7 @@ class AndroidPlatformBackendTest(unittest.TestCase):
def tearDown(self):
self._stubs.Restore()
@test.Disabled('chromeos')
def testGetCpuStats(self):
proc_stat_content = [
'7702 (.android.chrome) S 167 167 0 0 -1 1077936448 '
......@@ -52,6 +53,7 @@ class AndroidPlatformBackendTest(unittest.TestCase):
cpu_stats = backend.GetCpuStats('7702')
self.assertEquals(cpu_stats, {'CpuProcessTime': 5.0})
@test.Disabled('chromeos')
def testGetCpuStatsInvalidPID(self):
# Mock an empty /proc/pid/stat.
adb_empty_proc_stat = MockAdbCommands([])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment