Lines Matching refs:host_path
62 host_path = zygote.host_path
64 self.assertTrue(os.path.isdir(host_path))
72 self.assertFalse(os.path.isdir(host_path))
78 host_path = zygote.host_path
80 self.assertTrue(os.path.isdir(host_path))
85 self.assertFalse(os.path.isdir(host_path))
91 host_path = zygote.host_path
93 utils.run('sudo rmdir %s' % zygote.host_path)
94 self.assertFalse(os.path.isdir(host_path))
103 self.assertIsNotNone(zygote.host_path)
104 self.assertTrue(os.path.isdir(zygote.host_path))
111 host_path=zygote.host_path)
129 with self.createZygote(host_path=test_host_path) as zygote:
135 host_path=zygote.host_path)
234 self.assertEquals(zygote0.host_path, zygote1.host_path)
300 host_path = None): argument
312 if host_path is None:
313 host_path = os.path.join(self.shared_host_dir.path, name)
321 host_path)
329 def verifyBindMount(self, container, container_path, host_path): argument
339 host_inode = utils.run('ls -id %s' % host_path).stdout.split()[0]