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

Commit 26c0b5e3 authored by Nick Kralevich's avatar Nick Kralevich Committed by Android Git Automerger
Browse files

am 1c7f0860: Merge "overlaytests: fix testrunner.py md5sum invocation"

* commit '1c7f0860':
  overlaytests:  fix testrunner.py md5sum invocation
parents 8f2bc09f 1c7f0860
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -301,7 +301,7 @@ class Md5Test:
        return self.path
        return self.path


    def execute(self):
    def execute(self):
        returncode, stdout, stderr = _adb_shell('md5 %s' % self.path)
        returncode, stdout, stderr = _adb_shell('md5sum %s' % self.path)
        if returncode != 0:
        if returncode != 0:
            return returncode, stdout, stderr
            return returncode, stdout, stderr
        actual_md5 = stdout.split()[0]
        actual_md5 = stdout.split()[0]