summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-01-07 18:49:58 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-01-07 19:48:56 +0100
commitb417f09e1303900252642108d2ac500a80a25a6b (patch)
tree9fc6736c5d7f1607bcf433fb87315c4cf4770766
parentc6810ae9a971f5a0e44ad6eec029bdf2c06e297a (diff)
downloadvendor_replicant-scripts-master.tar.gz
vendor_replicant-scripts-master.tar.bz2
vendor_replicant-scripts-master.zip
tests: RecoveryRuntime: install_zip: print full zip pathHEADreplicant-6.0master
Having the full zip path makes it easier for debugging: if it fails for some reason, with the full path users can then simply look at the zip and/or retry to sideload it manually. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--tests/src/lib/replicant_releases.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/lib/replicant_releases.py b/tests/src/lib/replicant_releases.py
index 4185dc8..4f7774f 100644
--- a/tests/src/lib/replicant_releases.py
+++ b/tests/src/lib/replicant_releases.py
@@ -212,7 +212,8 @@ class RecoveryRuntime(object):
if not self.quiet:
print('RecoveryRuntime.install_zip: '
- + 'Starting to install {} on {}'.format(filename, self.device))
+ + 'Starting to install {} on {}'.format(
+ recovery_path, self.device))
self.append_recovery_command('--sideload')
self.host.run(['adb', 'reboot', 'recovery'])