Message ID | 1276439625-32472-6-git-send-email-mgoldish@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py index 9d3539f..f65d967 100755 --- a/client/tests/kvm/kvm_vm.py +++ b/client/tests/kvm/kvm_vm.py @@ -884,11 +884,10 @@ class VM: logging.error("Could not get shared memory info from dead VM.") return None - cmd = "cat /proc/%d/statm" % self.params.get('pid_' + self.name) - shm = int(os.popen(cmd).readline().split()[2]) + filename = "/proc/%d/statm" % self.get_pid() + shm = int(open(filename).read().split()[2]) # statm stores informations in pages, translate it to MB - shm = shm * 4 / 1024 - return shm + return shm * 4.0 / 1024 def remote_login(self, nic_index=0, timeout=10):