adb: disable failing test.

Bug: http://b/141943968
Bug: http://b/141923622
Test: python -m unittest test_device.FileOperationsTest
Change-Id: Ie384c71c3d6875db74982a398fb66f035ce9f408
This commit is contained in:
Josh Gao 2019-10-01 14:14:07 -07:00
parent 17e920dbe4
commit ea3f43ccf2
1 changed files with 3 additions and 1 deletions

View File

@ -903,10 +903,12 @@ class FileOperationsTest(DeviceTest):
remote_path += '/filename'
self.device.push(local=tmp_file.name, remote=remote_path)
def test_push_multiple_slash_root(self):
def disabled_test_push_multiple_slash_root(self):
"""Regression test for pushing to //data/local/tmp.
Bug: http://b/141311284
Disabled because this broken on the adbd side as well: b/141943968
"""
with tempfile.NamedTemporaryFile() as tmp_file:
tmp_file.write('\0' * 1024 * 1024)