Home
last modified time | relevance | path

Searched refs:mount_process (Results 1 – 3 of 3) sorted by relevance

/third_party/libfuse/test/
Dtest_ctests.py58 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd,
61 wait_for_mount(mount_process, mnt_dir)
73 cleanup(mount_process, mnt_dir)
76 umount(mount_process, mnt_dir)
88 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd,
91 wait_for_mount(mount_process, mnt_dir)
101 cleanup(mount_process, mnt_dir)
104 umount(mount_process, mnt_dir)
Dtest_examples.py92 mount_process = subprocess.Popen(
96 wait_for_mount(mount_process, mnt_dir)
110 cleanup(mount_process, mnt_dir)
113 umount(mount_process, mnt_dir)
149 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd,
152 wait_for_mount(mount_process, mnt_dir)
188 cleanup(mount_process, mnt_dir)
191 umount(mount_process, mnt_dir)
207 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd,
210 wait_for_mount(mount_process, mnt_dir)
[all …]
Dutil.py37 def wait_for_mount(mount_process, mnt_dir, argument
43 if mount_process.poll() is not None:
49 def cleanup(mount_process, mnt_dir): argument
59 mount_process.terminate()
61 mount_process.wait(1)
63 mount_process.kill()
65 def umount(mount_process, mnt_dir): argument
86 code = mount_process.poll()