| Index: client/tools/cd_hash.py
|
| diff --git a/client/tests/kvm/cd_hash.py b/client/tools/cd_hash.py
|
| old mode 100755
|
| new mode 100644
|
| similarity index 93%
|
| rename from client/tests/kvm/cd_hash.py
|
| rename to client/tools/cd_hash.py
|
| index 04f8cbee33f0bbccd9bca3a8de3a39d5a6b5090e..c658447b800c62ecd45043f7a17846eed4406229
|
| --- a/client/tests/kvm/cd_hash.py
|
| +++ b/client/tools/cd_hash.py
|
| @@ -7,16 +7,16 @@ Program that calculates several hashes for a given CD image.
|
|
|
| import os, sys, optparse, logging
|
| import common
|
| -import kvm_utils
|
| from autotest_lib.client.common_lib import logging_manager
|
| from autotest_lib.client.bin import utils
|
| +from autotest_lib.client.virt import virt_utils
|
|
|
|
|
| if __name__ == "__main__":
|
| parser = optparse.OptionParser("usage: %prog [options] [filenames]")
|
| options, args = parser.parse_args()
|
|
|
| - logging_manager.configure_logging(kvm_utils.KvmLoggingConfig())
|
| + logging_manager.configure_logging(virt_utils.KvmLoggingConfig())
|
|
|
| if args:
|
| filenames = args
|
|
|