Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79ce3fe7 authored by Josh Gao's avatar Josh Gao
Browse files

adb: be more permissive in test_push_error_reporting.

Be agnostic to whether /system is writable when testing push error
reporting.

Test: python test_device.py
Change-Id: I1d03564fa35442c20e2c96a7f5b56d39868efc52
parent 05a3abfe
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -890,7 +890,8 @@ class FileOperationsTest(DeviceTest):
            except subprocess.CalledProcessError as e:
                output = e.output

            self.assertIn('Permission denied', output)
            self.assertTrue('Permission denied' in output or
                            'Read-only file system' in output)

    def _test_pull(self, remote_file, checksum):
        tmp_write = tempfile.NamedTemporaryFile(mode='wb', delete=False)