diff options
author | 2009-08-11 22:19:14 -0700 | |
---|---|---|
committer | 2009-08-11 22:19:14 -0700 | |
commit | 064dbd076d431a7508b864aa0993cd59ef743e4e (patch) | |
tree | 3a9162631cdd997f7717a42f86af47a627e1c57e | |
parent | 5c042b09d4fc63b42e435d1a7574be6bd640484e (diff) | |
parent | bf5ac2aac32cc0a2d8a7221cb0891ed1bb3a2f24 (diff) |
Merge change 20905
* changes:
git rid of the "x" prefixes for test
-rwxr-xr-x | tests/backup/test_backup_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/backup/test_backup_common.sh b/tests/backup/test_backup_common.sh index 31e4ddd8c818..61ec8332dc52 100755 --- a/tests/backup/test_backup_common.sh +++ b/tests/backup/test_backup_common.sh @@ -23,7 +23,7 @@ function a { $DRY_RUN adb $ADB_OPTS "$@"; } function adb_root { root_status=$(a root) - if [ "x$root_status" != "xadbd is already running as root" ]; then + if [ "$root_status" != "adbd is already running as root" ]; then echo -n "Restarting adb as root..." sleep 2 a 'wait-for-device' |